Add default group colour option #322
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Tests CI | |
on: | |
push: | |
branches: | |
- main | |
- master | |
- 'dev*' | |
pull_request: | |
branches: | |
- main | |
- master | |
- 'dev*' | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: lts/* | |
- name: Build | |
run: | | |
npm ci | |
npm run build | |
- name: Run jest tests | |
run: | | |
npm test -- --verbose |