forked from remix-run/react-router
-
Notifications
You must be signed in to change notification settings - Fork 0
54 lines (48 loc) · 1.3 KB
/
integration-full.yml
File metadata and controls
54 lines (48 loc) · 1.3 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
52
53
54
name: Branch
# main/dev branches will get the full run across
# all OS/browsers for multiple node versions
on:
push:
branches:
- main
- dev
paths-ignore:
- "packages/*/.changes/**"
- "decisions/**"
- "docs/**"
- "examples/**"
- "jest/**"
- "scripts/**"
- "tutorial/**"
- "contributors.yml"
- "**/*.md"
jobs:
build:
name: "⚙️ Build"
if: github.repository == 'remix-run/react-router'
uses: ./.github/workflows/shared-build.yml
integration-ubuntu:
name: "👀 Integration Test"
if: github.repository == 'remix-run/react-router'
uses: ./.github/workflows/shared-integration.yml
with:
os: "ubuntu-latest"
node_version: "[20.19, 22]"
browser: '["chromium", "firefox"]'
integration-windows:
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"]'
timeout: 90
integration-macos:
name: "👀 Integration Test"
if: github.repository == 'remix-run/react-router'
uses: ./.github/workflows/shared-integration.yml
with:
os: "macos-latest"
node_version: "[20.19, 22]"
browser: '["webkit"]'