forked from DockYard/ember-composable-helpers
-
Notifications
You must be signed in to change notification settings - Fork 0
52 lines (48 loc) · 1.08 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
name: CI
on:
push:
branches:
- main
pull_request: {}
jobs:
cache-dependencies:
name: Cache dependencies
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v4
- uses: wyvox/action-setup-pnpm@v3
test:
name: Test
env:
CI: true
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: wyvox/action-setup-pnpm@v3
- run: pnpm run test
working-directory: ./test-app
ember-try:
name: "Ember Try"
env:
CI: true
runs-on: ubuntu-latest
strategy:
matrix:
try-scenario:
[
ember-lts-3.28,
ember-lts-4.4,
ember-lts-4.8,
ember-lts-4.12,
ember-lts-5.4,
ember-lts-5.8,
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
working-directory: ./test-app
timeout-minutes: 10