-
Notifications
You must be signed in to change notification settings - Fork 1
74 lines (67 loc) · 1.64 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
name: CI
on:
push:
branches:
- main
tags:
- '*'
pull_request:
jobs:
test:
name: Tests
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: pnpm/action-setup@v2
- name: Setup node.js
uses: actions/setup-node@v4
with:
node-version: 18
cache: 'pnpm'
- name: Setup pnpm cache
uses: actions/cache@v4
with:
path: |
node_modules
*/node_modules
key: node_modules-${{runner.os}}-${{hashFiles('**/pnpm-lock.yaml')}}-v2
- name: Install dependencies
run: CI=true pnpm i --frozen-lockfile
- name: Lint
run: pnpm lint
- name: Test
run: pnpm test
try_scenarios:
name: ${{ matrix.try-scenario }}
timeout-minutes: 5
runs-on: ubuntu-latest
needs: [test]
strategy:
fail-fast: false
matrix:
try-scenario:
- ember-3.28
- ember-4.0.0
- ember-4.4
- ember-4.8
- ember-4.12
- ember-release
- ember-beta
- ember-canary
- embroider-safe
- embroider-optimized
steps:
- name: Setup pnpm cache
uses: actions/cache@v3
with:
path: |
node_modules
*/node_modules
key: node_modules-${{runner.os}}-${{hashFiles('**/pnpm-lock.yaml')}}-v2
- name: Install dependencies
run: CI=true pnpm i --frozen-lockfile
- name: Test
run: >-
node_modules/.bin/ember try:one ${{ matrix.try-scenario }}
--skip-cleanup
working-directory: ./test-app