Add GitHub Actions for test

This commit is contained in:
Nemo 2021-07-16 12:33:40 +05:30
parent 6ae7264c73
commit 085db689e0
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