Skip to content

chore: fix workflow #215

chore: fix workflow

chore: fix workflow #215

Workflow file for this run

name: test
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install pnpm
run: corepack enable
- uses: actions/setup-node@v3
with:
node-version: 22.9.0
- name: Install Dependices
run: pnpm install
- name: Prepare Dependencies
run: make build-all
- name: Run Test
run: pnpm test