Run tests on GitHub Actions

This commit is contained in:
Nemo 2021-06-10 00:40:14 +05:30 committed by GitHub
parent c9d721953e
commit 9d30f09aac
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 13 additions and 0 deletions

13
.github/workflows/action.yml vendored Normal file
View File

@ -0,0 +1,13 @@
on: push
name: Main Workflow
jobs:
runNpmStuff:
name: Run NPM Stuff
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- uses: actions/setup-node@v2
with:
node-version: '16'
- run: npm install
- run: npm test