File tree Expand file tree Collapse file tree 2 files changed +75
-61
lines changed Expand file tree Collapse file tree 2 files changed +75
-61
lines changed Original file line number Diff line number Diff line change 1+ name : CI
2+
3+ on :
4+ push :
5+ branches :
6+ - master
7+ tags :
8+ - ' *'
9+ pull_request :
10+ schedule :
11+ - cron : ' 0 4 * * 5' # Fridays at 4am
12+
13+ jobs :
14+ test :
15+ name : Tests
16+ runs-on : ubuntu-latest
17+
18+ steps :
19+ - name : Checkout code
20+ uses : actions/checkout@v2
21+ - name : Setup node.js
22+ uses : actions/setup-node@v1
23+ with :
24+ node-version : 10
25+ - name : Install dependencies
26+ uses : bahmutov/npm-install@v1
27+ - name : Lint
28+ run : yarn lint
29+ - name : Test
30+ run : yarn test:ember
31+
32+ test-no-lock :
33+ name : Floating Dependencies
34+ runs-on : ubuntu-latest
35+ needs :
36+ - test
37+ steps :
38+ - name : Checkout code
39+ uses : actions/checkout@v2
40+ - name : Setup node.js
41+ uses : actions/setup-node@v1
42+ with :
43+ node-version : 10
44+ - name : Install dependencies
45+ uses : bahmutov/npm-install@v1
46+ with :
47+ useLockFile : false
48+ - name : Test
49+ run : yarn test:ember
50+
51+ test-try :
52+ name : Additional Tests
53+ runs-on : ubuntu-latest
54+ needs :
55+ - test
56+ strategy :
57+ matrix :
58+ scenario :
59+ - ember-lts-3.16
60+ - ember-release
61+ - ember-beta
62+ - ember-canary
63+ - ember-default-with-jquery
64+ - ember-classic
65+ steps :
66+ - name : Checkout code
67+ uses : actions/checkout@v2
68+ - name : Setup node.js
69+ uses : actions/setup-node@v1
70+ with :
71+ node-version : 10
72+ - name : Install dependencies
73+ uses : bahmutov/npm-install@v1
74+ - name : Test
75+ run : yarn ember try:one ${{ matrix.scenario }}
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments