diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 907abc3..b55c783 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -28,7 +28,7 @@ jobs: else RUN=(bash -c) fi - "${RUN[@]}" "cd '$PWD' && nix develop --command bash -c 'set -e; bin/startpg; (cd packages/capnweb && npm ci && npm run build); npm ci; (cd examples/basic && npm ci); (cd examples/chat && npm ci); (cd site && npm ci); npm run codegen:check; npm run build; npm run check; (cd site && npm run typecheck && npm run test)'" + "${RUN[@]}" "cd '$PWD' && nix develop --command bash -c 'set -e; bin/startpg; (cd packages/capnweb && npm ci && npm run build); npm ci; (cd examples/basic && npm ci); (cd examples/sqlite && npm ci); (cd examples/chat && npm ci); (cd site && npm ci); npm run codegen:check; npm run build; npm run check; (cd site && npm run typecheck && npm run test)'" site: needs: check diff --git a/package.json b/package.json index a07ccce..961829f 100644 --- a/package.json +++ b/package.json @@ -84,7 +84,7 @@ "format": "prettier --write src", "test": "vitest run", "check": "npm run lint && npm run typecheck && npm run test && npm run check-examples", - "check-examples": "npm --prefix examples/basic run check && npm --prefix examples/chat run check", + "check-examples": "npm --prefix examples/basic run check && npm --prefix examples/sqlite run check && npm --prefix examples/chat run check", "test:do": "vitest run --project workerd" }, "devDependencies": {