Files
frontend-app-authoring/.github/workflows/validate.yml
Maman Khan fcb9e91aa2 Moving code coverage from codecov package to CI (#311)
* fix: removed depreciated package codecov

* fix: syncing package and package-lock
2022-07-28 16:31:41 +05:00

25 lines
453 B
YAML

name: validate
on:
push:
branches:
- 'master'
pull_request:
branches:
- '**'
jobs:
tests:
runs-on: ubuntu-latest
strategy:
matrix:
node: [16]
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node }}
- run: make validate.ci
- name: Upload coverage
uses: codecov/codecov-action@v3
with:
fail_ci_if_error: true