Skip to content

chore: update lock #158

chore: update lock

chore: update lock #158

Workflow file for this run

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