Skip to content

Feat/bridge monitor (#59) #16

Feat/bridge monitor (#59)

Feat/bridge monitor (#59) #16

Workflow file for this run

name: CI (dev with coverage)
on:
push:
branches: [dev]
paths-ignore:
- '**.md'
permissions:
contents: read
env:
NODE_VERSION: 24.5.0
YARN_VERSION: 4.9.2
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
test-coverage:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- uses: ./.github/setup
with:
node-version: ${{ env.NODE_VERSION }}
yarn-version: ${{ env.YARN_VERSION }}
- name: Build shared packages
run: yarn build:shared
- name: Unit tests with coverage
run: yarn test --coverage
- name: Upload coverage report
uses: actions/upload-artifact@v4
with:
name: coverage-report
path: coverage/**
if-no-files-found: ignore
retention-days: 7