-
Notifications
You must be signed in to change notification settings - Fork 23
42 lines (38 loc) · 843 Bytes
/
tests.yml
File metadata and controls
42 lines (38 loc) · 843 Bytes
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
name: Tests
on:
pull_request:
branches: [master]
jobs:
tests:
name: Unit Tests
runs-on: ubuntu-latest
timeout-minutes: 15
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: '16.x'
- name: Install
run: yarn install
- name: Linting
run: yarn lint:js
- name: Test
run: yarn test --coverage
integration_tests:
name: Integration Tests
strategy:
matrix:
ember_version: ['3.10', '3.13']
runs-on: ubuntu-latest
timeout-minutes: 15
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: '16.x'
- name: Install
run: yarn install
- name: Test
env:
EMBER_VERSION: ${{ matrix.ember_version }}
run: yarn test:integration