Skip to content

chore(deps): update pnpm to v9 #5505

chore(deps): update pnpm to v9

chore(deps): update pnpm to v9 #5505

Workflow file for this run

name: test
on:
push:
pull_request:
jobs:
test:
name: Test ${{ matrix.os }} ${{ matrix.node-version }}
strategy:
matrix:
os: [ ubuntu-latest ]
node-version: [18.x, 20.x]
runs-on: ${{ matrix.os }}
steps:
- run: git config --global core.autocrlf false
- uses: actions/checkout@v4
- uses: pnpm/action-setup@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: "${{ matrix.node-version }}"
cache: "pnpm"
- run: pnpm install
- run: pnpm build
- run: pnpm test:generate-dashboard
- run: cat test-dashboard.md | tee -a $GITHUB_STEP_SUMMARY
if: always()
- uses: codecov/codecov-action@0cfda1dd0a4ad9efc75517f399d859cd1ea4ced1 # v4
with:
token: ${{ secrets.CODECOV_TOKEN }}