From bfb1e9e159b9242549f27a35b6167c2963be0faa Mon Sep 17 00:00:00 2001 From: Sodbileg Gansukh Date: Tue, 23 Mar 2021 12:55:53 +0800 Subject: [PATCH] Add a test --- .github/workflows/test.yml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 .github/workflows/test.yml 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