Skip to content

fix(deps): bump @types/jasmine from 5.1.6 to 5.1.7 #222

fix(deps): bump @types/jasmine from 5.1.6 to 5.1.7

fix(deps): bump @types/jasmine from 5.1.6 to 5.1.7 #222

Workflow file for this run

name: Build & run tests
on:
push:
branches-ignore:
- main
workflow_call:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 20
- name: Build
run: |
npm ci
npm run build
tests:
needs: build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 20
- name: Run tests
run: |
npm ci
npm run build
npm run coverage
- name: Archive coverage report
uses: actions/upload-artifact@v4
with:
name: coverage
path: ./packages/*/coverage
publish-coverage:
needs: tests
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Download artifacts
uses: actions/download-artifact@v4
with:
name: coverage
- name: Upload to Codecov
uses: codecov/codecov-action@v5
with:
token: ${{ secrets.CODECOV_TOKEN }}
run-type-check:
needs: build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 20
- name: Run type tests
run: |
npm ci
npm run build
npm run type-check