Skip to content

Commit

Permalink
trying to fix github actions not finding relative path to modules
Browse files Browse the repository at this point in the history
  • Loading branch information
Ragudos committed Jan 23, 2024
1 parent 4f8ebf2 commit a288d31
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 26 deletions.
18 changes: 0 additions & 18 deletions __tests__/package.json

This file was deleted.

File renamed without changes.
3 changes: 0 additions & 3 deletions __tests__/jest.config.mjs → jest.config.mjs
Original file line number Diff line number Diff line change
@@ -1,7 +1,4 @@
/** @type {import("jest").Config} */
export default {
verbose: true,
modulePaths: [
"<rootDir>"
]
};
15 changes: 10 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,20 +10,25 @@
"workspaces": [
"www",
"algorithm",
"core",
"__tests__"
"core"
],
"scripts": {
"format": "prettier --write [\"www/src/**/*.{ts,js,html}\",\"algorithm/src/**/*.ts\", \"core/src/**/*.ts\", \"__tests__/**/*.ts\"]",
"test": "yarn workspace @chess-deez-nuts/__tests__ run test",
"build": "yarn workspaces foreach --all -pt build",
"dev": "yarn workspaces foreach --all -pt dev"
"dev": "yarn workspaces foreach --all -pt dev",
"test": "jest"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^6.19.0",
"@typescript-eslint/parser": "^6.19.0",
"eslint": "^8.56.0",
"prettier": "^3.2.2",
"typescript": "^5.3.3"
"typescript": "^5.3.3",
"@babel/core": "^7.23.7",
"@babel/preset-env": "^7.23.8",
"@babel/preset-typescript": "^7.23.3",
"@types/jest": "^29.5.11",
"babel-jest": "^29.7.0",
"jest": "^29.7.0"
}
}

0 comments on commit a288d31

Please sign in to comment.