forked from amiel/ember-data-url-templates
-
Notifications
You must be signed in to change notification settings - Fork 0
39 lines (33 loc) · 809 Bytes
/
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
name: CI
on:
push:
branches: [ 'master', 'v*' ]
pull_request:
workflow_dispatch:
jobs:
test:
name: Test
runs-on: ubuntu-latest
strategy:
matrix:
ember-try-scenario:
- ember-lts-3.4
- ember-lts-3.8
- ember-lts-3.12
- ember-lts-3.16
- ember-release
- ember-beta
- ember-canary
- ember-default
steps:
- uses: actions/checkout@v2
- uses: volta-cli/action@v1
- name: Run Tests
run: |
yarn
yarn run lint:js
./node_modules/.bin/ember try:one ${{ matrix.ember-try-scenario }} --skip-cleanup
# - name: Coveralls
# uses: coverallsapp/github-action@master
# with:
# github-token: ${{ secrets.GITHUB_TOKEN }}