build(deps-dev): bump @types/node from 20.8.10 to 20.12.5 #31
Workflow file for this run
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 Flow | |
on: | |
push: | |
workflow_dispatch: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
name: CI flow | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Setup pnpm | |
uses: pnpm/action-setup@v2 | |
- name: Setup node and restore cached dependencies | |
uses: actions/setup-node@v4 | |
with: | |
node-version-file: '.nvmrc' | |
cache: 'pnpm' | |
- name: Install packages | |
run: pnpm install --frozen-lockfile | |
- name: Test | |
run: pnpm test | |
- name: Publish to Codecov | |
uses: codecov/codecov-action@v3 | |
with: | |
# Codecov backend may be unstable | |
fail_ci_if_error: false | |
token: ${{ secrets.CODECOV_TOKEN }} |