chore(deps): update codecov/codecov-action action to v5 #1769
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: CI | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
# schedule: | |
# - cron: "0 23 * * 6" | |
jobs: | |
test: | |
strategy: | |
fail-fast: false | |
matrix: | |
os: | |
- "ubuntu-latest" | |
- "macos-latest" | |
- "windows-latest" | |
node_version: | |
- "16" | |
- "14" | |
- "12" | |
# exclude: | |
# - os: "macos-latest" | |
# node_version: "12" | |
name: Node.js ${{ matrix.node_version }} on ${{ matrix.os }} | |
runs-on: ${{ matrix.os }} | |
# needs: [build] | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Setup Node.js | |
uses: actions/setup-node@v3 | |
with: | |
node-version: ${{ matrix.node_version }} | |
- name: Install Dependencies | |
run: yarn | |
# - name: Download Artifact | |
# uses: actions/download-artifact@v2 | |
# with: | |
# name: dist | |
# path: dist | |
- name: Run Test | |
run: yarn test-coverage | |
- name: Upload Coverage | |
uses: codecov/codecov-action@v5.1.0 | |
with: | |
token: ${{ secrets.CODECOV_TOKEN }} | |
# - name: Upload Coverage | |
# uses: coverallsapp/github-action@master | |
# continue-on-error: true | |
# with: | |
# github-token: ${{ secrets.github_token }} | |
# parallel: true | |
# coverage: | |
# needs: test | |
# runs-on: ubuntu-latest | |
# steps: | |
# - name: Sending webhook to Coveralls | |
# uses: coverallsapp/github-action@master | |
# continue-on-error: true | |
# with: | |
# github-token: ${{ secrets.github_token }} | |
# parallel-finished: true | |
legacy: | |
strategy: | |
fail-fast: false | |
matrix: | |
os: | |
- "ubuntu-latest" | |
- "macos-latest" | |
- "windows-latest" | |
node_version: | |
- "11" | |
- "10" | |
- "9" | |
- "8" | |
- "7" | |
- "6" | |
- "5" | |
- "4" | |
- "0.12" | |
- "0.10" | |
name: Node.js ${{ matrix.node_version }} 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_version }} | |
- name: Run Test | |
run: node ./tests/main.js | |
- name: Run Test with --experimental-modules | |
# those version don't support `--experimental-modules` | |
if: | | |
matrix.node_version != '7' && | |
matrix.node_version != '6' && | |
matrix.node_version != '5' && | |
matrix.node_version != '4' && | |
matrix.node_version != '0.12' && | |
matrix.node_version != '0.10' | |
run: node --experimental-modules ./tests/main.js | |
lint: | |
name: Lint | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Setup Node.js | |
uses: actions/setup-node@v3 | |
- name: Install Dependencies | |
run: yarn | |
- name: Run Lint | |
run: yarn lint |