Skip to content

renamed lighthouserc.js #6

renamed lighthouserc.js

renamed lighthouserc.js #6

Workflow file for this run

name: Axe
on:
push:
branches: [INFRA01]
pull_request:
branches: [INFRA01]
jobs:
axe:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [20.x]
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- uses: pnpm/action-setup@v2
name: Install pnpm
with:
version: 8
run_install: false
- name: Get pnpm store directory
shell: bash
run: |
echo "STORE_PATH=$(pnpm store path --silent)" >> $GITHUB_ENV
- uses: actions/cache@v3
name: Setup pnpm cache
with:
path: ${{ env.STORE_PATH }}
key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }}
restore-keys: |
${{ runner.os }}-pnpm-store-
- run: pnpm install --no-frozen-lockfile
- run: pnpm run build --if-present
- run: pnpm run dev & npx wait-on http://localhost:4321
- name: Run axe
run: |
pnpm install -g @axe-core/cli
axe http://localhost:4321 --exit