[Snyk] Security upgrade probot from 11.4.1 to 12.3.3 #891
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |