2022-06-28 00:31:07 +02:00
|
|
|
name: 'Run unit tests.'
|
2021-03-25 14:26:24 +01:00
|
|
|
on: # rebuild any PRs and main branch changes
|
2022-06-28 00:31:07 +02:00
|
|
|
pull_request:
|
|
|
|
branches:
|
|
|
|
- main
|
|
|
|
- 'releases/*'
|
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- main
|
|
|
|
- 'releases/*'
|
2020-07-01 05:37:14 +02:00
|
|
|
|
|
|
|
jobs:
|
2022-06-28 00:31:07 +02:00
|
|
|
build: # make sure build/ci works properly
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
2024-09-11 21:32:13 +02:00
|
|
|
- uses: actions/checkout@v4
|
2022-06-28 00:31:07 +02:00
|
|
|
|
|
|
|
- name: Build and run L0 tests.
|
|
|
|
run: |
|
|
|
|
npm install
|
|
|
|
npm test
|