This commit is contained in:
Shailesh Kumar 2022-02-09 04:36:14 +05:30 committed by GitHub
commit f465f1b3c2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 15 additions and 0 deletions

15
.github/workflows/tests.yml vendored Normal file
View File

@ -0,0 +1,15 @@
name: Tests
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: 14
- name: install deps
run: npm ci
- name: run tests
run: npm test