-
Notifications
You must be signed in to change notification settings - Fork 1
91 lines (78 loc) · 2.26 KB
/
ci.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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
name: CI
on:
push:
branches:
- main
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@v4
- uses: wyvox/action-setup-pnpm@v3
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@v4
- uses: wyvox/action-setup-pnpm@v3
- 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@v4
- uses: wyvox/action-setup-pnpm@v3
- 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@v4
# - uses: wyvox/action-setup-pnpm@v3
# - run: pnpm test:ember
# working-directory: tests/min-supported
try-scenarios:
name: ${{ matrix.try-scenario }}
needs: ['setup', 'test']
runs-on: ubuntu-latest
timeout-minutes: 5
strategy:
fail-fast: false
matrix:
try-scenario:
- ember-lts-4.8
- ember-lts-4.12
- ember-lts-5.4
- ember-lts-5.8
- ember-concurrency-4.0
- ember-release
- ember-beta
- ember-canary
steps:
- uses: actions/checkout@v4
- uses: wyvox/action-setup-pnpm@v3
- run: ./node_modules/.bin/ember try:one ${{ matrix.try-scenario }} --skip-cleanup
# - run: ./node_modules/.bin/ember try:one ${{ matrix.try-scenario }} --skip-cleanup --- echo "setup"
working-directory: tests/test-app
# - run: pnpm install --ignore-scripts --no-frozen-lockfile
# - run: pnpm dedupe
# - run: pnpm install --force # ensure pnpm injections are re-created
# - run: pnpm ember test
# working-directory: tests/test-app