Skip to content

chore(deps): update dependency @axe-core/puppeteer to v4.11.1 #2556

chore(deps): update dependency @axe-core/puppeteer to v4.11.1

chore(deps): update dependency @axe-core/puppeteer to v4.11.1 #2556

Workflow file for this run

name: Test
on:
push:
branches:
- dev
pull_request:
branches:
- main
- dev
jobs:
test:
strategy:
matrix:
os: [macOS-latest, windows-latest]
node: [24]
runs-on: ${{ matrix.os }}
steps:
- name: Checkout code
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
- name: Setup Node.js
uses: actions/setup-node@6044e13b5dc448c55e2357c09f80417699197238 # v6
with:
node-version: ${{ matrix.node }}
- name: Enable Corepack and setup Yarn v4
run: |
corepack enable
yarn --version
- name: Cache dependencies
id: cache-depends
uses: actions/cache@cdf6c1fa76f9f475f3d7449005a359c84ca0f306 # v5
with:
path: '**/node_modules'
key: os-${{ matrix.os }}-node${{ matrix.node }}-${{ hashFiles('yarn.lock') }}
- name: Create .yarnrc for Windows
if: runner.os == 'Windows' && steps.cache-depends.outputs.cache-hit != 'true'
run: echo "network-timeout 600000" > .yarnrc
- name: Install dependencies
if: steps.cache-depends.outputs.cache-hit != 'true'
run: yarn install --immutable
- name: Build
run: yarn build
- name: Lint
run: yarn lint
- name: Test
run: yarn test