2020-08-16 20:32:27 -04:00
|
|
|
name: test
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- master
|
|
|
|
pull_request:
|
|
|
|
branches:
|
|
|
|
- master
|
|
|
|
|
|
|
|
jobs:
|
2020-10-23 15:58:59 -04:00
|
|
|
test-containerized:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
-
|
|
|
|
name: Checkout
|
2020-11-17 04:06:56 -05:00
|
|
|
uses: actions/checkout@v2
|
2020-10-23 15:58:59 -04:00
|
|
|
-
|
|
|
|
name: Validate
|
|
|
|
run: docker buildx bake validate
|
|
|
|
-
|
|
|
|
name: Test
|
|
|
|
run: docker buildx bake test
|
|
|
|
|
2020-08-16 20:32:27 -04:00
|
|
|
test:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
-
|
|
|
|
name: Checkout
|
2020-11-17 04:06:56 -05:00
|
|
|
uses: actions/checkout@v2
|
2020-08-16 20:32:27 -04:00
|
|
|
-
|
|
|
|
name: Install
|
|
|
|
run: yarn install
|
|
|
|
-
|
|
|
|
name: Test
|
|
|
|
run: yarn run test
|
2020-09-08 17:34:53 -04:00
|
|
|
-
|
|
|
|
name: Upload coverage
|
2020-11-17 04:06:56 -05:00
|
|
|
uses: codecov/codecov-action@v1
|
2020-09-08 17:34:53 -04:00
|
|
|
if: success()
|
|
|
|
with:
|
|
|
|
token: ${{ secrets.CODECOV_TOKEN }}
|
|
|
|
file: ./coverage/clover.xml
|