Skip to content

ci: build before test #3

ci: build before test

ci: build before test #3

Workflow file for this run

name: 'test'
on: push
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install pnpm
uses: pnpm/[email protected]
- name: Install Node.js
uses: actions/setup-node@v4
with:
node-version-file: '.node-version'
cache: 'pnpm'
- run: pnpm install
- run: pnpm build
- run: pnpm test