-
Notifications
You must be signed in to change notification settings - Fork 5
84 lines (77 loc) · 2.2 KB
/
run-tests.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
name: Run-Tests
on:
pull_request:
types: [opened, synchronize, reopened, ready_for_review]
push:
branches:
- main
- master
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
cancel-in-progress: true
jobs:
lint:
name: Lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: volta-cli/action@v4
- uses: actions/cache@v4
id: node-cache
with:
path: "**/node_modules"
key: ${{ runner.os }}-ci-yarn-${{ hashFiles('**/yarn.lock') }}
- name: Install Dependencies
if: steps.node-cache.outputs.cache-hit != 'true'
run: yarn --frozen-lockfile
- name: Lint Addon
working-directory: addon
run: yarn run lint
- name: Lint Test App
working-directory: test-app
run: yarn run lint
- name: Lint Docs App
working-directory: docs-app
run: yarn run lint
test-docs:
name: Test Docs
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: volta-cli/action@v4
- uses: actions/cache@v4
with:
path: "**/node_modules"
key: ${{ runner.os }}-ci-yarn-${{ hashFiles('**/yarn.lock') }}
- run: yarn --frozen-lockfile
- name: Run Tests
working-directory: docs-app
run: yarn run test
test:
name: Run Ember Tests
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
ember-version:
[
embroider-safe,
embroider-optimized,
ember-lts-3.28,
ember-lts-4.4,
ember-lts-4.8,
ember-lts-4.12,
]
steps:
- uses: actions/checkout@v4
- uses: volta-cli/action@v4
- uses: actions/cache@v4
with:
path: "**/node_modules"
key: ${{ runner.os }}-ci-yarn-${{ hashFiles('**/yarn.lock') }}-${{ matrix.ember-version }}
restore-keys: |
${{ runner.os }}-ci-yarn-${{ hashFiles('**/yarn.lock') }}-
- run: yarn --frozen-lockfile
- name: Run Tests
working-directory: test-app
run: ./node_modules/.bin/ember try:one ${{ matrix.ember-version }} --skip-cleanup