chore: update lock #158
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: CI | |
on: | |
push: | |
branches: [main] | |
pull_request: | |
branches: [main] | |
jobs: | |
ci: | |
name: unit tests | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: '16' | |
cache: 'yarn' | |
- name: install dependencies | |
run: yarn --frozen-lockfile | |
- name: build packages | |
run: yarn hje:dist; yarn rje:dist | |
- name: run unit tests | |
run: yarn test:ci | |
- uses: dorny/test-reporter@v1.6.0 | |
with: | |
name: unit test results | |
path: junit.xml | |
reporter: jest-junit |