Skip to content

feat!: remove cwd from filenames by default #17

feat!: remove cwd from filenames by default

feat!: remove cwd from filenames by default #17

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
node-version: [18, 20, 22]
steps:
- uses: actions/checkout@v4
- name: Install pnpm
uses: pnpm/action-setup@v4
- name: Set node version to ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- name: Install & Build
run: |
pnpm install
pnpm build
- name: Typecheck
run: pnpm typecheck
- name: Test
run: pnpm test