-
Notifications
You must be signed in to change notification settings - Fork 26
53 lines (46 loc) · 1.13 KB
/
Copy pathci.yml
File metadata and controls
53 lines (46 loc) · 1.13 KB
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
name: ci
on:
push:
branches:
- master
pull_request:
jobs:
test:
runs-on: ubuntu-latest
timeout-minutes: 5
steps:
- uses: actions/checkout@v2
- uses: volta-cli/action@v1
- uses: mydea/actions-ember-testing@v2
- name: Install dependencies
run: yarn install --frozen-lockfile
- name: Run tests
run: yarn test:ember
- name: Lint
run: yarn lint
test-matrix:
runs-on: ubuntu-latest
timeout-minutes: 5
strategy:
matrix:
# Keep this in sync with config/ember-try.js
ember:
[
ember-lts-3.16,
ember-lts-3.20,
ember-release,
ember-beta,
ember-canary,
ember-default-with-jquery,
ember-classic,
embroider-safe,
embroider-optimized,
]
steps:
- uses: actions/checkout@v2
- uses: volta-cli/action@v1
- uses: mydea/actions-ember-testing@v2
- name: Install dependencies
run: yarn install --frozen-lockfile
- name: Run tests
run: yarn test:ember-one ${{ matrix.ember }}