Additional CI checks (#1754)

* Additional CI checks

* if: always()
This commit is contained in:
Jaco
2022-07-05 23:15:33 +02:00
committed by GitHub
parent e8bf24ef51
commit 3dd66ff0f5
6 changed files with 48 additions and 2 deletions
+5 -1
View File
@@ -5,7 +5,7 @@ jobs:
pr:
strategy:
matrix:
step: ['lint', 'test', 'build']
step: ['lint', 'test', 'build', 'deno']
name: ${{ matrix.step }}
runs-on: ubuntu-latest
env:
@@ -13,7 +13,11 @@ jobs:
CC_TEST_REPORTER_ID: ${{ secrets.CC_TEST_REPORTER_ID }}
steps:
- uses: actions/checkout@v2
- uses: denoland/setup-deno@v1
with:
deno-version: vx.x.x
- name: ${{ matrix.step }}
if: always()
run: |
yarn install --immutable | grep -v 'YN0013'
yarn ${{ matrix.step }}