-
Notifications
You must be signed in to change notification settings - Fork 2.5k
67 lines (59 loc) · 1.64 KB
/
test-full.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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
name: Branch
# main/dev/release-* branches and nightly tags will get the full run across
# all OS/browsers for multiple node versions
on:
push:
branches:
- main
- dev
- release-*
tags:
- "v0.0.0-nightly-*"
paths-ignore:
- "docs/**"
- "scripts/**"
- "contributors.yml"
- "**/*.md"
jobs:
build:
name: "⚙️ Build"
if: github.repository == 'remix-run/remix'
uses: ./.github/workflows/shared-build.yml
unit-ubuntu:
name: "🧪 Unit Test"
if: github.repository == 'remix-run/remix'
uses: ./.github/workflows/shared-test-unit.yml
with:
os: "ubuntu-latest"
node_version: "[18, 20]"
unit-windows:
name: "🧪 Unit Test"
if: github.repository == 'remix-run/remix'
uses: ./.github/workflows/shared-test-unit.yml
with:
os: "windows-latest"
node_version: "[18, 20]"
integration-ubuntu:
name: "👀 Integration Test"
if: github.repository == 'remix-run/remix'
uses: ./.github/workflows/shared-test-integration.yml
with:
os: "ubuntu-latest"
node_version: "[18, 20]"
browser: '["chromium", "firefox"]'
integration-windows:
name: "👀 Integration Test"
if: github.repository == 'remix-run/remix'
uses: ./.github/workflows/shared-test-integration.yml
with:
os: "windows-latest"
node_version: "[18, 20]"
browser: '["msedge"]'
integration-macos:
name: "👀 Integration Test"
if: github.repository == 'remix-run/remix'
uses: ./.github/workflows/shared-test-integration.yml
with:
os: "macos-latest"
node_version: "[18, 20]"
browser: '["webkit"]'