Skip to content

Commit

Permalink
fix: ci tests
Browse files Browse the repository at this point in the history
  • Loading branch information
cjkoepke committed Feb 13, 2024
1 parent 6a6be33 commit 78dcd94
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ jobs:

# Run Tests
- name: Run Tests
run: yarn test
run: yarn test:ci

# Prebuild to check
- name: Run Prebuild
Expand Down
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
"scripts": {
"postinstall": "lerna bootstrap",
"test": "yarn node --no-warnings --experimental-vm-modules $(yarn bin jest)",
"test:ci": "yarn node --max-old-space-size=4096 --no-warnings --experimental-vm-modules $(yarn bin jest) --maxWorkers=1",
"lint": "eslint ./packages --ext js,jsx,ts,tsx",
"lint:fix": "yarn lint --fix",
"prepare": "husky install",
Expand Down
2 changes: 1 addition & 1 deletion tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,5 +22,5 @@
"declarationMap": false,
"noEmitOnError": true,
},
"exclude": ["node_modules", "temporary_modules", "tools/*.ts", "dist"],
"exclude": ["node_modules", "temporary_modules", "tools/*.ts", "dist", "docs"],
}

0 comments on commit 78dcd94

Please sign in to comment.