Skip to content

ci: fix working dir (#11) #6

ci: fix working dir (#11)

ci: fix working dir (#11) #6

Workflow file for this run

name: CI
on:
push:
jobs:
build-and-test:
name: build & test
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Node.js, PNPM, and install dependencies
uses: ./.github/actions/pnpm-install
- name: Build all
working-directory: ./typescript
run: pnpm build
- name: Test all
working-directory: ./typescript
run: pnpm test