forked from adopted-ember-addons/ember-sortable
-
Notifications
You must be signed in to change notification settings - Fork 0
69 lines (60 loc) · 1.81 KB
/
github_ci.yml
File metadata and controls
69 lines (60 loc) · 1.81 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
# This workflow will do a clean install of node dependencies, build the source code and run tests across different versions of node
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions
name: build
on:
workflow_dispatch:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
main-test:
name: Main test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Use Node.js 10
uses: actions/setup-node@v1
with:
node-version: 12
- name: Install Dependencies
run: yarn install --frozen-lockfile
- name: Running tests
run: yarn test
ember-try-required:
name: Ember try ember-${{matrix.scenario}}
runs-on: ubuntu-latest
strategy:
fail-fast: false
max-parallel: 1
matrix:
scenario: [ember-lts-3.8, ember-lts-3.12, ember-lts-3.16, ember-lts-3.20]
steps:
- uses: actions/checkout@v2
- name: Use Node.js 10
uses: actions/setup-node@v1
with:
node-version: 12
- name: Install Dependencies
run: yarn install --frozen-lockfile
- name: Running test
run: yarn ember try:one ${{ matrix.scenario }}
ember-try-optional:
name: Ember try ember-${{matrix.scenario}}
runs-on: ubuntu-latest
strategy:
fail-fast: false
max-parallel: 1
matrix:
scenario: [ember-beta, ember-release, ember-canary]
steps:
- uses: actions/checkout@v2
- name: Use Node.js 10
uses: actions/setup-node@v1
with:
node-version: 12
- name: Install Dependencies
run: yarn install --frozen-lockfile
- name: Running test
run: yarn ember try:one ${{ matrix.scenario }}
continue-on-error: true