Add a test

This commit is contained in:
Sodbileg Gansukh 2021-03-23 12:55:53 +08:00
parent c68b5a8471
commit bfb1e9e159
1 changed files with 15 additions and 0 deletions

15
.github/workflows/test.yml vendored Normal file
View File

@ -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