diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 3fec103..4802164 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -13,6 +13,7 @@ env: jobs: run-commands: strategy: + fail-fast: false matrix: command: - name: test @@ -20,7 +21,6 @@ jobs: # - lint # - typecheck # - build - fail-fast: false name: ${{ matrix.command.name }} runs-on: ubuntu-latest steps: diff --git a/packages/docs/scripts/test.js b/packages/docs/scripts/test.js index d5a715d..c41dc55 100644 --- a/packages/docs/scripts/test.js +++ b/packages/docs/scripts/test.js @@ -6,4 +6,5 @@ await execa("pnpm", ["build"], { stdio: "inherit" }) const app = execa("pnpm", ["start"], { stdio: "inherit" }) await waitOn({ resources: ["http-get://localhost:3000"] }) await cypress.run() +console.log("cypress run done") app.kill()