Added L0 tests and fixed some minor issues. (#20)

This commit is contained in:
Sundar
2021-03-26 13:08:55 +05:30
committed by GitHub
parent d315e938e1
commit e77e49c8f8
8 changed files with 6335 additions and 20 deletions

20
.github/workflows/test.yml vendored Normal file
View File

@ -0,0 +1,20 @@
name: "build-test"
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
- run: |
npm install
npm build
npm test