mirror of
https://github.com/codecov/codecov-action.git
synced 2025-12-09 20:36:25 +00:00
Bumps [actions/checkout](https://github.com/actions/checkout) from 4.1.1 to 4.1.2. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v4.1.1...v4.1.2) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
85 lines
2.8 KiB
YAML
85 lines
2.8 KiB
YAML
name: Workflow for Codecov Action
|
|
on: [push, pull_request]
|
|
jobs:
|
|
run:
|
|
runs-on: ${{ matrix.os }}
|
|
strategy:
|
|
matrix:
|
|
os: [macos-latest, windows-latest, ubuntu-latest, macos-latest-xlarge]
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v4.1.2
|
|
- name: Install dependencies
|
|
run: npm install
|
|
- name: Lint
|
|
run: npm run lint
|
|
- name: Run tests and collect coverage
|
|
run: npm run test
|
|
- name: Upload coverage to Codecov (script)
|
|
uses: ./
|
|
with:
|
|
files: ./coverage/script/coverage-final.json
|
|
flags: script,${{ matrix.os }}
|
|
name: codecov-script
|
|
verbose: true
|
|
token: ${{ secrets.CODECOV_TOKEN }}
|
|
- name: Upload coverage to Codecov (demo)
|
|
uses: ./
|
|
with:
|
|
files: ./coverage/calculator/coverage-final.json,./coverage/coverage-test/coverage-final.json
|
|
file: ./coverage/coverage-final.json
|
|
flags: demo,${{ matrix.os }}
|
|
name: codecov-demo
|
|
verbose: true
|
|
token: ${{ secrets.CODECOV_TOKEN }}
|
|
- name: Upload coverage to Codecov (version)
|
|
uses: ./
|
|
with:
|
|
files: ./coverage/calculator/coverage-final.json,./coverage/coverage-test/coverage-final.json
|
|
file: ./coverage/coverage-final.json
|
|
flags: version,${{ matrix.os }}
|
|
name: codecov-version
|
|
version: v0.2.0
|
|
verbose: true
|
|
token: ${{ secrets.CODECOV_TOKEN }}
|
|
|
|
run-container:
|
|
runs-on: ubuntu-latest
|
|
container: node:18
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v4.1.2
|
|
- name: Install dependencies
|
|
run: npm install
|
|
- name: Lint
|
|
run: npm run lint
|
|
- name: Run tests and collect coverage
|
|
run: npm run test
|
|
- name: Upload coverage to Codecov (script)
|
|
uses: ./
|
|
with:
|
|
files: ./coverage/script/coverage-final.json
|
|
flags: script,${{ matrix.os }}
|
|
name: codecov-script
|
|
verbose: true
|
|
token: ${{ secrets.CODECOV_TOKEN }}
|
|
- name: Upload coverage to Codecov (demo)
|
|
uses: ./
|
|
with:
|
|
files: ./coverage/calculator/coverage-final.json,./coverage/coverage-test/coverage-final.json
|
|
file: ./coverage/coverage-final.json
|
|
flags: demo,${{ matrix.os }}
|
|
name: codecov-demo
|
|
verbose: true
|
|
token: ${{ secrets.CODECOV_TOKEN }}
|
|
- name: Upload coverage to Codecov (version)
|
|
uses: ./
|
|
with:
|
|
files: ./coverage/calculator/coverage-final.json,./coverage/coverage-test/coverage-final.json
|
|
file: ./coverage/coverage-final.json
|
|
flags: version,${{ matrix.os }}
|
|
name: codecov-version
|
|
version: v0.2.0
|
|
verbose: true
|
|
token: ${{ secrets.CODECOV_TOKEN }}
|