diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index dbffa9e..e69de29 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -1,33 +0,0 @@ -name: ci - -on: - push: - branches: [main] - pull_request: - -jobs: - test: - runs-on: ubuntu-latest - strategy: - fail-fast: false - matrix: - node: ["20", "22"] - steps: - - uses: actions/checkout@v4 - - - uses: pnpm/action-setup@v4 - with: - version: 10 - - - uses: actions/setup-node@v4 - with: - node-version: ${{ matrix.node }} - cache: pnpm - - - run: pnpm install --frozen-lockfile - - - run: pnpm run typecheck - - - run: pnpm run build - - - run: pnpm test