Skip to content

chore(deps): update stryker-js monorepo to v7.3.0 #10244

chore(deps): update stryker-js monorepo to v7.3.0

chore(deps): update stryker-js monorepo to v7.3.0 #10244

Workflow file for this run

name: CI
on:
push:
branches: [master]
pull_request:
types: [synchronize, opened, reopened]
jobs:
build_and_test:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
node-version: [18.x, 20.x]
os: [ubuntu-latest, windows-latest]
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: nrwl/nx-set-shas@v4
with:
main-branch-name: master
- uses: coursier/cache-action@v6
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
- run: npm ci
- name: Lint & Build & Test
run: npm run all
- uses: actions/upload-artifact@v3
if: failure()
with:
name: image-diffs
path: packages/elements/reports/diff/
incremental_mutation_testing:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: npm ci
- run: npm run download-incremental-reports
- name: Run Stryker incrementally
run: |
npx nx run-many --target=stryker --projects=mutation-testing-metrics,mutation-testing-elements -- --incremental
env:
STRYKER_DASHBOARD_API_KEY: ${{ secrets.STRYKER_DASHBOARD_API_KEY }}