Skip to content

Commit

Permalink
skip e2e on GH (#217)
Browse files Browse the repository at this point in the history
  • Loading branch information
tatethurston authored Jul 28, 2023
1 parent 9624783 commit 2550b1e
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 7 deletions.
1 change: 1 addition & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ jobs:
- uses: arduino/setup-protoc@v2
with:
version: "23.4"
- uses: bufbuild/[email protected]
- uses: actions/checkout@v3
- uses: pnpm/action-setup@v2
- uses: actions/setup-node@v3
Expand Down
5 changes: 0 additions & 5 deletions e2e/clientcompat/src/test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,6 @@ describe("Twirp Client Compatabilitiy Test", () => {
cwd: join(__dirname, ".."),
});

// TODO: Run under GitHub CI
if (process.env.CODECOV_TOKEN) {
return;
}

expect(child.stdout).toMatchInlineSnapshot(`
"Testing noop without error... PASS
Testing "canceled" error parsing... PASS
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,9 @@
"lint": "pnpm typecheck && prettier --check . && prettier-package-json --list-different '{,e2e/*,examples/*,packages/*,}package.json' && eslint .",
"lint:fix": "prettier --write . && prettier-package-json --write '{,e2e/*,examples/*,packages/*}package.json' && eslint --fix .",
"prepare": "husky install",
"regen": "pnpm examples:regen && pnpm e2e:regen && pnpm run test",
"regen": "pnpm examples:regen && pnpm e2e:regen",
"test": "jest",
"test:ci": "jest --coverage",
"test:ci": "jest examples/* packages/* --coverage",
"test:integration": "pnpm run test-protos && pnpm run test-clientcompat",
"test-clientcompat": "(cd ./src/integration-tests/clientcompat && pnpm run build && npx twirpscript)",
"test-protos": "(cd src/integration-tests/protos && pnpm run build && pnpm run typecheck:protos)",
Expand Down

0 comments on commit 2550b1e

Please sign in to comment.