forked from probot/create-probot-app
-
Notifications
You must be signed in to change notification settings - Fork 0
38 lines (35 loc) · 942 Bytes
/
test.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
name: Test
on:
push:
branches:
- master
pull_request:
types: [opened, synchronize]
jobs:
test_matrix:
runs-on: ubuntu-latest
strategy:
matrix:
node: [10, 12, 14, 15]
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node }}
- run: npm install
- run: npm run build
- run: npm run test:clean
# XXX: might be possible to parallelize each template test too, .e.g. `npm run test:template ${{ matrix.template }}`
- run: npm run test
# separate "test" job that we set as required in branch protection,
# as the names of the matrix jobs change each frequently
test:
needs: test_matrix
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: 15
- run: npm install
- run: npm run lint