-
Notifications
You must be signed in to change notification settings - Fork 2.5k
50 lines (43 loc) · 1.24 KB
/
test-pr-windows-macos.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
name: PR (Full)
# PRs touching create-remix/remix-dev will also run on Windows and OSX
on:
pull_request:
paths:
- "packages/create-remix/**"
- "packages/remix-dev/**"
- "!**/*.md"
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
unit-windows:
name: "🧪 Unit Test"
if: github.repository == 'remix-run/remix'
uses: ./.github/workflows/shared-test-unit.yml
with:
os: "windows-latest"
node_version: "[20]"
integration-firefox:
name: "👀 Integration Test"
if: github.repository == 'remix-run/remix'
uses: ./.github/workflows/shared-test-integration.yml
with:
os: "ubuntu-latest"
node_version: "[20]"
browser: '["firefox"]'
integration-msedge:
name: "👀 Integration Test"
if: github.repository == 'remix-run/remix'
uses: ./.github/workflows/shared-test-integration.yml
with:
os: "windows-latest"
node_version: "[20]"
browser: '["msedge"]'
integration-webkit:
name: "👀 Integration Test"
if: github.repository == 'remix-run/remix'
uses: ./.github/workflows/shared-test-integration.yml
with:
os: "macos-latest"
node_version: "[20]"
browser: '["webkit"]'