-
-
Notifications
You must be signed in to change notification settings - Fork 0
51 lines (48 loc) · 1.2 KB
/
test.yml
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-12, macos-13, macos-14]
record: [true, false]
ignoreTccDb: [true, false]
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 20
- name: Guidepup Setup
uses: ./
with:
record: ${{ matrix.record }}
ignoreTccDb: ${{ matrix.ignoreTccDb }}
- uses: actions/upload-artifact@v3
if: always()
with:
name: artifacts
path: |
**/recordings/**/*
test-windows:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [windows-2019, windows-2022]
nvdaInstallDir: ["", "D:\\a\\setup-action\\setup-action\\nvda"]
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 20
- name: Guidepup Setup
uses: ./
with:
nvdaInstallDir: ${{ matrix.nvdaInstallDir }}
- run: Get-ChildItem ${{ matrix.nvdaInstallDir }}