2020-08-18 11:40:31 -04:00
|
|
|
name: test
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- master
|
|
|
|
- releases/v*
|
|
|
|
paths-ignore:
|
2020-08-18 11:45:23 -04:00
|
|
|
- "**.md"
|
2020-08-18 11:40:31 -04:00
|
|
|
pull_request:
|
|
|
|
paths-ignore:
|
2020-08-18 11:45:23 -04:00
|
|
|
- "**.md"
|
2020-08-18 11:40:31 -04:00
|
|
|
|
|
|
|
jobs:
|
2020-08-26 19:48:38 -04:00
|
|
|
test-containerized:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
-
|
|
|
|
name: Checkout
|
2020-11-18 12:13:18 -05:00
|
|
|
uses: actions/checkout@v2
|
2020-08-26 19:48:38 -04:00
|
|
|
-
|
|
|
|
name: Validate
|
|
|
|
run: docker buildx bake validate
|
|
|
|
-
|
|
|
|
name: Test
|
|
|
|
run: docker buildx bake test
|
|
|
|
|
2020-08-18 11:40:31 -04:00
|
|
|
test:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
-
|
|
|
|
name: Checkout
|
2020-11-18 12:13:18 -05:00
|
|
|
uses: actions/checkout@v2
|
2020-08-18 11:40:31 -04:00
|
|
|
-
|
|
|
|
name: Install
|
|
|
|
run: yarn install
|
|
|
|
-
|
|
|
|
name: Test
|
|
|
|
run: yarn run test
|
2020-08-27 11:41:10 -04:00
|
|
|
-
|
|
|
|
name: Upload coverage
|
2020-11-18 12:13:18 -05:00
|
|
|
uses: codecov/codecov-action@v1
|
2020-08-27 11:41:10 -04:00
|
|
|
if: success()
|
|
|
|
with:
|
|
|
|
token: ${{ secrets.CODECOV_TOKEN }}
|
|
|
|
file: ./coverage/clover.xml
|