-
-
Notifications
You must be signed in to change notification settings - Fork 10.8k
Expand file tree
/
Copy pathintegration-pr-windows-macos.yml
More file actions
43 lines (37 loc) · 1.06 KB
/
integration-pr-windows-macos.yml
File metadata and controls
43 lines (37 loc) · 1.06 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
name: PR (Full)
# PRs touching react-router-dev will also run on Windows and OSX
on:
pull_request:
paths:
- "pnpm-lock.yaml"
- "integration/**"
- "packages/react-router-dev/**"
- "!**/*.md"
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
integration-firefox:
name: "👀 Integration Test"
if: github.repository == 'remix-run/react-router'
uses: ./.github/workflows/shared-integration.yml
with:
os: "ubuntu-latest"
node_version: "[22]"
browser: '["firefox"]'
integration-msedge:
name: "👀 Integration Test"
if: github.repository == 'remix-run/react-router'
uses: ./.github/workflows/shared-integration.yml
with:
os: "windows-latest"
node_version: "[22]"
browser: '["msedge"]'
integration-webkit:
name: "👀 Integration Test"
if: github.repository == 'remix-run/react-router'
uses: ./.github/workflows/shared-integration.yml
with:
os: "macos-latest"
node_version: "[22]"
browser: '["webkit"]'