Bump @types/node from 20.12.11 to 20.12.12 (#777) #2045
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Coverage | |
# trigger on every commit push and PR for all branches | |
on: | |
push: | |
branches: ['**'] | |
paths-ignore: | |
- '**/*.md' | |
pull_request: | |
branches: ['**'] | |
paths-ignore: | |
- '**/*.md' | |
jobs: | |
code-coverage: | |
name: Code coverage | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node-version: [12.x] | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Use Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v3 | |
with: | |
node-version: ${{ matrix.node-version }} | |
# NPM started understanding yarn.lock file starting from v7 | |
- name: Update NPM | |
shell: bash | |
run: | | |
export NPM_VERSION=$(npm -v) | |
export IS_NPM_SUITABLE=$(node -p "parseInt(process.env.NPM_ROOT, 10) >= 7") | |
if [ "$IS_NPM_SUITABLE" == "false" ]; then | |
echo "NPM needs upgrading!" | |
npm i npm@7 -g | |
fi | |
- name: Install | |
run: | | |
npm install | |
- name: Code coverage report | |
run: | | |
npm run test:coverage-report | |
- name: Upload coverage to Codecov | |
uses: codecov/codecov-action@v4 | |
with: | |
files: ./coverage.lcov | |
fail_ci_if_error: false | |
- name: Code coverage 90% | |
run: | | |
npm run test:coverage-90 |