-
Notifications
You must be signed in to change notification settings - Fork 10
94 lines (81 loc) · 2.58 KB
/
Copy pathci.yml
File metadata and controls
94 lines (81 loc) · 2.58 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
name: CI
on:
push:
branches:
- main
- master
pull_request: {}
concurrency:
group: ci-${{ github.head_ref || github.ref }}
cancel-in-progress: true
jobs:
setup:
name: "Fill Dependency Cache"
runs-on: ubuntu-latest
timeout-minutes: 5
steps:
- uses: actions/checkout@v6
- uses: wyvox/action-setup-pnpm@v4
with:
# Future installations will run "prepare"
# and this job doesn't need to
args: "--ignore-scripts"
lint:
name: "Lints"
needs: ["setup"]
runs-on: ubuntu-latest
timeout-minutes: 5
steps:
- uses: actions/checkout@v6
- uses: wyvox/action-setup-pnpm@v4
- run: pnpm build && pnpm i -f
- name: "Verify that no manually needed fixes / violations are present"
run: pnpm lint
test:
name: "Tests"
needs: ["setup"]
runs-on: ubuntu-latest
timeout-minutes: 5
steps:
- uses: actions/checkout@v6
- uses: wyvox/action-setup-pnpm@v4
- run: pnpm test:ember
working-directory: tests/test-app
test_min:
name: "Tests (min-supported, 3.28)"
needs: ["setup"]
runs-on: ubuntu-latest
timeout-minutes: 5
steps:
- uses: actions/checkout@v6
- uses: wyvox/action-setup-pnpm@v4
- run: pnpm test:ember
working-directory: tests/min-supported
try-scenarios:
name: ${{ matrix.try-scenario.name }}
needs: ["setup", "test"]
runs-on: ubuntu-latest
timeout-minutes: 5
strategy:
fail-fast: false
matrix:
try-scenario:
- { name: "ember-lts-4.8", directory: "tests/test-app" }
- { name: "ember-lts-4.12", directory: "tests/test-app" }
- { name: "ember-lts-5.4", directory: "tests/test-app" }
- { name: "ember-lts-5.8", directory: "tests/test-app" }
- { name: "ember-concurrency-4.0", directory: "tests/test-app" }
- { name: "ember-lts-5.12", directory: "tests/vite-app" }
- { name: "ember-lts-6.4", directory: "tests/vite-app" }
- { name: "ember-lts-6.8", directory: "tests/vite-app" }
- { name: "ember-release", directory: "tests/vite-app" }
- { name: "ember-beta", directory: "tests/vite-app" }
- { name: "ember-canary", directory: "tests/vite-app" }
steps:
- uses: actions/checkout@v6
- uses: wyvox/action-setup-pnpm@v4
- run: pnpm build
# force re-linking
- run: pnpm i -f
- run: ./node_modules/.bin/ember try:one ${{ matrix.try-scenario.name }} --skip-cleanup
working-directory: ${{ matrix.try-scenario.directory }}