Skip to content

Merge pull request #4 from chayprabs/dependabot/npm_and_yarn/typescri… #74

Merge pull request #4 from chayprabs/dependabot/npm_and_yarn/typescri…

Merge pull request #4 from chayprabs/dependabot/npm_and_yarn/typescri… #74

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
env:
FORCE_JAVASCRIPT_ACTIONS_TO_NODE24: true
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: pnpm/action-setup@v4
with:
version: 10.33.1
- uses: actions/setup-node@v4
with:
node-version: 22
cache: pnpm
- run: pnpm install --frozen-lockfile
- run: pnpm --filter @csvshape/core build
- run: pnpm lint
- run: pnpm typecheck
- run: pnpm test
- run: pnpm build