2019-09-22 05:17:07 +00:00
|
|
|
name: test
|
|
|
|
|
|
|
|
on:
|
|
|
|
pull_request:
|
2019-10-04 14:23:35 +00:00
|
|
|
branches:
|
|
|
|
- master
|
2020-05-06 22:01:12 +00:00
|
|
|
- feature/*
|
2019-10-04 14:23:35 +00:00
|
|
|
- releases/*
|
2019-09-22 05:17:07 +00:00
|
|
|
push:
|
2019-10-04 14:23:35 +00:00
|
|
|
branches:
|
|
|
|
- master
|
2020-05-06 22:01:12 +00:00
|
|
|
- feature/*
|
2019-10-04 14:23:35 +00:00
|
|
|
- releases/*
|
2019-09-22 05:17:07 +00:00
|
|
|
|
|
|
|
jobs:
|
|
|
|
test:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
-
|
|
|
|
# https://github.com/actions/checkout
|
|
|
|
name: Checkout
|
2020-05-06 21:12:22 +00:00
|
|
|
uses: actions/checkout@v2
|
2020-05-07 00:15:24 +00:00
|
|
|
-
|
|
|
|
name: Unshallow
|
|
|
|
run: git fetch --prune --unshallow
|
2019-09-22 05:17:07 +00:00
|
|
|
-
|
|
|
|
name: Install
|
2020-05-06 22:01:12 +00:00
|
|
|
run: npm install
|
2019-09-22 05:17:07 +00:00
|
|
|
-
|
|
|
|
name: Test
|
|
|
|
run: npm run test
|