chore(deps-dev): bump @rollup/plugin-node-resolve from 15.3.1 to 16.0.0 #403
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] | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 21 | |
- uses: pnpm/action-setup@v2 | |
with: | |
version: 8 | |
run_install: | | |
- recursive: true | |
args: [--strict-peer-dependencies] | |
- name: Build | |
run: pnpm build | |
- name: biome lint check | |
run: pnpm lint | |
- name: biome format check | |
run: pnpm format:check | |
- name: Test | |
run: pnpm test |