diff --git a/.github/workflows/coverage.yml b/.github/workflows/coverage.yml index ae08bf0..fd8a52d 100644 --- a/.github/workflows/coverage.yml +++ b/.github/workflows/coverage.yml @@ -23,13 +23,8 @@ jobs: - uses: pnpm/action-setup@v4 name: Install pnpm with: - run_install: false + run_install: | + - recursive: true + args: [--frozen-lockfile, --strict-peer-dependencies] - - name: Use Node.js ${{ matrix.node-version }} on ${{ matrix.os }} - uses: actions/setup-node@v4 - with: - node-version: ${{ matrix.node-version }} - cache: 'pnpm' - - - run: pnpm i --frozen-lockfile - run: pnpm biome check . && pnpm test && pnpm build diff --git a/apps/examples/package.json b/apps/examples/package.json index 4fdb571..96ac003 100644 --- a/apps/examples/package.json +++ b/apps/examples/package.json @@ -1,7 +1,6 @@ { "name": "@typed-binary/examples", "scripts": { - "prepare": "pnpm -w run build", "example:binaryMesh": "tsx binaryMesh/index.ts", "example:customSchema": "tsx customSchema/index.ts", "example:dog": "tsx dog/index.ts",