Added trigger for L2 tests. (#26)

This commit is contained in:
Sundar
2021-03-31 17:23:12 +05:30
committed by GitHub
parent edc063ca5f
commit 62aeada586
3 changed files with 56 additions and 3 deletions

21
.github/workflows/unit-tests.yml vendored Normal file
View File

@ -0,0 +1,21 @@
name: "Run unit tests."
on: # rebuild any PRs and main branch changes
pull_request:
branches:
- master
- 'releases/*'
push:
branches:
- master
- 'releases/*'
jobs:
build: # make sure build/ci works properly
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Run L0 tests.
run: |
npm install
npm test