chore(deps): update dependency get-stream to v9 #1615
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: Test | |
on: | |
push: | |
branches: | |
- isn-renovate/** # branches generated by https://github.com/apps/isn-renovate | |
pull_request: | |
branches: | |
- main | |
- beta | |
workflow_call: | |
secrets: | |
CODECOV_TOKEN: | |
required: true | |
jobs: | |
test_matrix: | |
strategy: | |
matrix: | |
os: [ubuntu-latest, windows-latest, macos-latest] | |
node-version: [18, 20, 21] | |
runs-on: ${{ matrix.os }} | |
timeout-minutes: 10 | |
steps: | |
- name: Checkout project | |
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4 | |
- name: Use Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@8f152de45cc393bb48ce5d89d36b731f54556e65 # v4 | |
with: | |
node-version: ${{ matrix.node-version }} | |
cache: npm | |
- name: Install packages | |
run: npm ci | |
- name: Audit npm signatures | |
run: npm audit signatures | |
- name: Check codestyle compliance | |
run: npm run lint | |
- name: Setup Git for tests | |
run: | | |
git config --global user.name "github-actions" | |
git config --global user.email "github-actions@github.com" | |
- name: Run tests | |
run: npm run test | |
- name: Upload coverage reports to Codecov | |
if: strategy.job-index == 0 | |
uses: codecov/codecov-action@eaaf4bedf32dbdc6b720b63067d99c4d77d6047d # v3 | |
with: | |
token: ${{ secrets.CODECOV_TOKEN }} | |
fail_ci_if_error: true | |
# separate job to set as required status check in branch protection | |
required_check: | |
runs-on: ubuntu-latest | |
needs: | |
- test_matrix | |
if: always() | |
steps: | |
- name: All required jobs and matrix versions passed | |
if: ${{ !(contains(needs.*.result, 'failure')) }} | |
run: exit 0 | |
- name: Some required jobs or matrix versions failed | |
if: ${{ contains(needs.*.result, 'failure') }} | |
run: exit 1 |