Initial commit

This commit is contained in:
Jaco Greeff
2020-09-21 14:59:46 +02:00
commit 314bf6f252
26 changed files with 19185 additions and 0 deletions
+18
View File
@@ -0,0 +1,18 @@
name: PR
on: [pull_request]
jobs:
pr:
strategy:
matrix:
step: ['lint', 'test', 'build', 'docs']
name: ${{ matrix.step }}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: ${{ matrix.step }}
env:
CC_TEST_REPORTER_ID: ${{ secrets.CC_TEST_REPORTER_ID }}
run: |
yarn install --immutable | grep -v 'YN0013'
yarn ${{ matrix.step }}