Skip to content

Commit

Permalink
ci: speed up tests (#1578)
Browse files Browse the repository at this point in the history
  • Loading branch information
alvrs authored Sep 22, 2023
1 parent d087892 commit 9ddb28e
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/e2e.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ on:
jobs:
main:
name: Run end-to-end tests
runs-on: ubuntu-latest
runs-on: ubuntu-latest-16-cores
services:
postgres:
image: postgres:12.1-alpine
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ on:
jobs:
test:
name: Run tests
runs-on: ubuntu-latest
runs-on: ubuntu-latest-16-cores
services:
postgres:
image: postgres:12.1-alpine
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@
"release:publish": "pnpm install && pnpm build && changeset publish",
"release:version": "changeset version && pnpm install --lockfile-only && pnpx [email protected] scripts/changelog.ts",
"sort-package-json": "npx sort-package-json package.json 'packages/*/package.json' 'templates/*/package.json' 'templates/*/packages/*/package.json' 'examples/*/package.json' 'examples/*/packages/*/package.json' 'e2e/*/package.json' 'e2e/*/packages/*/package.json' 'docs/package.json'",
"test": "pnpm recursive run test",
"test:ci": "pnpm recursive run test:ci"
"test": "pnpm run --recursive --filter=!@latticexyz/services test",
"test:ci": "pnpm run --recursive --parallel --filter=!@latticexyz/services test:ci"
},
"lint-staged": {
"*.{ts,tsx}": "eslint --cache --fix",
Expand Down

0 comments on commit 9ddb28e

Please sign in to comment.