Skip to content
This repository has been archived by the owner on Nov 28, 2023. It is now read-only.

Commit

Permalink
add release test workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
5rahim committed Oct 10, 2023
1 parent 4e3a891 commit e4d08b2
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions .github/workflows/release-test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: Release Test

on:
pull_request:
branches:
- main
types: [ opened, reopened ]
push:
branches: [ "main" ]

jobs:
build-test-job:
runs-on: ubuntu-latest

steps:
- name: Checkout code
uses: actions/checkout@v2

- name: Set up Node.js
uses: actions/setup-node@v2
with:
node-version: 18

- name: Install dependencies
run: npm install

- name: Build Seanime
run: npm run init

0 comments on commit e4d08b2

Please sign in to comment.