Skip to content

chore(release): publish #594

chore(release): publish

chore(release): publish #594

Workflow file for this run

name: Jest
on:
push:
branches: ['*']
permissions: read-all
jobs:
test:
name: Test
runs-on: ubuntu-latest
permissions:
checks: write
steps:
- name: Checkout code
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # tag=v4.1.7
- name: Setup node
uses: actions/setup-node@1e60f620b9541d16bece96c5465dc8ee9832be0b # tag=v4.0.3
with:
node-version: 18
- name: Run tests
run: |
npm ci
npx lerna run prepack
npm run test-ci
env:
TZ: America/Toronto
- name: Publish test report
uses: mikepenz/action-junit-report@db71d41eb79864e25ab0337e395c352e84523afe # tag=v4.3.1
if: always()
with:
report_paths: build/junit.xml
- name: Publish coverage report
uses: 5monkeys/cobertura-action@ee5787cc56634acddedc51f21c7947985531e6eb # tag=v14
with:
path: coverage/cobertura-coverage.xml
minimum_coverage: 100
fail_below_threshold: true