-
Notifications
You must be signed in to change notification settings - Fork 124
89 lines (72 loc) · 1.95 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
name: CI
on:
push:
branches:
- master
- 'v*'
pull_request: {}
schedule:
- cron: '0 3 * * *' # daily, at 3am
env:
PNPM_VERSION: 7.33.6
jobs:
docs:
name: API docs
runs-on: ubuntu-latest
steps:
- uses: actions/[email protected]
- uses: pnpm/[email protected]
with:
version: ${{ env.PNPM_VERSION }}
- uses: actions/[email protected]
with:
node-version: 16
cache: pnpm
- run: pnpm install
- run: pnpm run docs
# ensure there are no changes compared to the current API.md
- run: git diff --exit-code
test:
strategy:
matrix:
node: ['14', '16', '18']
name: Tests (Node.js v${{ matrix.node }})
runs-on: ubuntu-latest
steps:
- uses: actions/[email protected]
- uses: pnpm/[email protected]
with:
version: ${{ env.PNPM_VERSION }}
- uses: actions/[email protected]
with:
node-version: ${{ matrix.node }}
cache: pnpm
- run: pnpm install
- run: pnpm lint
- run: pnpm build
- run: pnpm test:coverage --runInBand
- run: pnpm test:ember
compatibility:
name: "Tests (Ember.js, ember-try: ${{ matrix.ember-try-scenario }}, Embroider: ${{ matrix.embroider }})"
runs-on: ubuntu-latest
strategy:
matrix:
embroider: ["true", "false"]
ember-try-scenario:
- ember-qunit-4
- ember-qunit-5
- ember-lts-3.28
steps:
- uses: actions/[email protected]
- uses: pnpm/[email protected]
with:
version: ${{ env.PNPM_VERSION }}
- uses: actions/[email protected]
with:
node-version: 16
cache: pnpm
- run: pnpm install
- run: pnpm build
- run: pnpm ember try:one ${{ matrix.ember-try-scenario}} -- --config-path tests/dummy/config/ember-try.js
env:
USE_EMBROIDER: "${{ matrix.embroider }}"