Skip to content

Build(deps): Bump codecov/codecov-action from 3.1.0 to 3.1.4 #886

Build(deps): Bump codecov/codecov-action from 3.1.0 to 3.1.4

Build(deps): Bump codecov/codecov-action from 3.1.0 to 3.1.4 #886

Workflow file for this run

name: Dev
on:
push:
branches:
- main
- patch-release
- next
pull_request:
jobs:
test:
timeout-minutes: 60
strategy:
fail-fast: false
matrix:
os:
- "ubuntu-latest"
- "macos-latest"
- "windows-latest"
node:
- "18"
- "16"
- "14"
include:
# only enable coverage on the fastest job
- os: "ubuntu-latest"
node: "18"
ENABLE_CODE_COVERAGE: true
FULL_TEST: true
CHECK_TEST_PARSERS: true
exclude:
- os: "macos-latest"
node: "16"
- os: "windows-latest"
node: "16"
env:
ENABLE_CODE_COVERAGE: ${{ matrix.ENABLE_CODE_COVERAGE }}
FULL_TEST: ${{ matrix.FULL_TEST }}
CHECK_TEST_PARSERS: ${{ matrix.CHECK_TEST_PARSERS }}
name: Node.js ${{ matrix.node }} on ${{ matrix.os }}
runs-on: ${{ matrix.os }}
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node }}
cache: "yarn"
- name: Install Dependencies
run: yarn install --immutable
- name: Run Tests
if: ${{ !matrix.ENABLE_CODE_COVERAGE }}
run: yarn test
- name: Run Tests (coverage)
if: ${{ matrix.ENABLE_CODE_COVERAGE }}
run: yarn c8 yarn test
- name: Upload Coverage
uses: codecov/codecov-action@v3.1.4
if: ${{ matrix.ENABLE_CODE_COVERAGE }}
with:
fail_ci_if_error: true