diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml new file mode 100644 index 00000000..d74e004e --- /dev/null +++ b/.github/workflows/test.yml @@ -0,0 +1,15 @@ +name: Test +on: + pull_request: + push: + branches: + - master + - 'renovate/*' +jobs: + test: + runs-on: ubuntu-latest + if: github.event_name == 'push' || (github.event_name == 'pull_request' && !startsWith(github.head_ref, 'renovate/')) + steps: + - uses: actions/checkout@v2 + - run: yarn + - run: yarn test:ci