Skip to content

Chore: merge main into v3.0.0 #3797

Chore: merge main into v3.0.0

Chore: merge main into v3.0.0 #3797

Workflow file for this run

# Requires repo secret: CODECOV_TOKEN ("repository upload token")
name: Codecov
on:
pull_request:
types:
# - edited # PR's base branch was changed
- opened
- reopened
- synchronize # PR's branch was edited (i.e. new commits)
push:
branches:
- 'main'
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
codecov-lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: formsort/action-check-codecov-config@v1
# !!! The codecov/project check should be required by GitHub !!!
# See ../../codecov.yml for the configuration that drives the check
codecov:
needs:
- codecov-lint
runs-on: ubuntu-latest
steps:
# Setup and install
- uses: actions/checkout@v4
- uses: volta-cli/action@v4
- run: npm ci
- run: |
sudo apt-get update
sudo apt-get install -y libsdl2-2.0-0 libsdl2-ttf-2.0-0
# Run test coverage
- run: npm run test:coverage
- uses: codecov/codecov-action@v4
with:
token: ${{ secrets.CODECOV_TOKEN }}
fail_ci_if_error: true
verbose: true