Skip to content

Commit cb53ef2

Browse files
author
Robert Jackson
authored
Test multiple ember versions (#29)
Test multiple ember versions
2 parents 487c08c + 4c395fc commit cb53ef2

143 files changed

Lines changed: 24926 additions & 31 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.github/workflows/tests.yml

Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
name: Tests
2+
on:
3+
pull_request:
4+
branches: [master]
5+
6+
jobs:
7+
tests:
8+
name: Unit Tests
9+
runs-on: ubuntu-latest
10+
timeout-minutes: 15
11+
12+
steps:
13+
- uses: actions/checkout@v1
14+
- uses: actions/setup-node@v1
15+
with:
16+
node-version: '10.x'
17+
- name: Install
18+
run: yarn install
19+
- name: Linting
20+
run: yarn lint:js
21+
- name: Test
22+
run: yarn test
23+
24+
integration_tests:
25+
name: Integration Tests
26+
strategy:
27+
matrix:
28+
ember_version: ['3.10', '3.13']
29+
runs-on: ubuntu-latest
30+
timeout-minutes: 15
31+
32+
steps:
33+
- uses: actions/checkout@v1
34+
- uses: actions/setup-node@v1
35+
with:
36+
node-version: '10.x'
37+
- name: Install
38+
run: yarn install
39+
- name: Test
40+
env:
41+
EMBER_VERSION: ${{ matrix.ember_version }}
42+
run: yarn test:integration

.travis.yml

Lines changed: 0 additions & 22 deletions
This file was deleted.
File renamed without changes.

0 commit comments

Comments
 (0)