-
-
Notifications
You must be signed in to change notification settings - Fork 0
51 lines (48 loc) · 1.28 KB
/
test.yml
File metadata and controls
51 lines (48 loc) · 1.28 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
name: Test
on:
push:
branches: [main]
pull_request:
branches: [main]
schedule:
- cron: "0 0 1 * *" # 1 day of every month
jobs:
test-macos:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [macos-14, macos-15, macos-26]
record: [true, false]
ignoreTccDb: [true, false]
steps:
- uses: actions/checkout@v5
- uses: actions/setup-node@v6
with:
node-version-file: .nvmrc
- name: Guidepup Setup
uses: ./
with:
record: ${{ matrix.record }}
ignoreTccDb: ${{ matrix.ignoreTccDb }}
- uses: actions/upload-artifact@v4
if: always()
with:
name: artifacts-${{ matrix.os }}-${{ matrix.record }}-${{ matrix.ignoreTccDb }}
path: |
**/recordings/**/*
test-windows:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [windows-2022, windows-2025]
nvdaInstallDir: ["", "C:\\a\\setup-action\\setup-action\\nvda"]
steps:
- uses: actions/checkout@v5
- uses: actions/setup-node@v6
with:
node-version-file: .nvmrc
- name: Guidepup Setup
uses: ./
with:
nvdaInstallDir: ${{ matrix.nvdaInstallDir }}
- run: Get-ChildItem ${{ matrix.nvdaInstallDir }}