chore(deps): update dependency @types/selenium-webdriver to v4.1.20 #10365
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 }} |