mirror of
https://github.com/ViViDboarder/Vivid-Casper.git
synced 2024-11-01 02:46:32 +00:00
16 lines
341 B
YAML
16 lines
341 B
YAML
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
|