Skip to content

refactor: updating GH actions (#24) #67

refactor: updating GH actions (#24)

refactor: updating GH actions (#24) #67

Workflow file for this run

name: Test NVDA
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
test-nvda:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [windows-2022, windows-2025]
browser: [chromium, firefox]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version-file: .nvmrc
- name: Guidepup Setup
uses: guidepup/[email protected]
with:
record: true
- run: yarn install --frozen-lockfile
- run: yarn pretest
- run: yarn test:nvda:${{ matrix.browser }}
- uses: actions/upload-artifact@v4
if: always()
continue-on-error: true
with:
name: artifacts-${{ matrix.os }}-${{ matrix.browser }}
path: |
**/test-results/**/*
**/recordings/**/*