2021-03-31 17:19:55 +05:30
|
|
|
name: "Run unit tests."
|
2021-03-25 18:56:24 +05:30
|
|
|
on: # rebuild any PRs and main branch changes
|
2020-07-01 09:07:14 +05:30
|
|
|
pull_request:
|
2021-03-25 18:56:24 +05:30
|
|
|
branches:
|
|
|
|
- main
|
|
|
|
- 'releases/*'
|
2020-07-01 09:07:14 +05:30
|
|
|
push:
|
|
|
|
branches:
|
2021-03-16 11:48:18 +05:30
|
|
|
- main
|
2020-07-01 09:07:14 +05:30
|
|
|
- 'releases/*'
|
|
|
|
|
|
|
|
jobs:
|
2021-03-25 18:56:24 +05:30
|
|
|
build: # make sure build/ci works properly
|
|
|
|
runs-on: ubuntu-latest
|
2020-07-01 09:07:14 +05:30
|
|
|
steps:
|
2021-03-25 18:56:24 +05:30
|
|
|
- uses: actions/checkout@v1
|
2021-03-31 17:19:55 +05:30
|
|
|
|
|
|
|
- name: Build and run L0 tests.
|
2020-07-01 09:07:14 +05:30
|
|
|
run: |
|
2021-03-16 11:52:33 +05:30
|
|
|
npm install
|
2021-03-25 18:56:24 +05:30
|
|
|
npm test
|