Skip to content

Commit

Permalink
Fix?
Browse files Browse the repository at this point in the history
  • Loading branch information
dumbmatter committed Apr 26, 2024
1 parent 878b73c commit 78ec35d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/nodejs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@ jobs:
- name: Install dependencies
run: pnpm install
- name: ESLint
run: pnpm lint-js
run: pnpm run lint-js
- name: TypeScript
run: pnpm lint-ts
run: pnpm run lint-ts
- name: Unit tests
run: pnpm test
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
"watch": "node --loader=import-jsx --no-warnings tools/watch.js",
"lint": "concurrently --raw \"pnpm run lint-js\" \"pnpm run lint-ts\"",
"lint-js": "eslint \"*.{mjs,js,ts,tsx}\" \"public/*.js\" \"src/**/*.{mjs,js,ts,tsx}\" \"tools/**/*.{mjs,js,ts,tsx}\"",
"lint-ts": "node tools/pre-test.js && pnpm run tsc",
"lint-ts": "node tools/pre-test.js && pnpm tsc",
"prettier": "prettier --write \"*.{mjs,js,json,scss,ts,tsx}\" \"public/**/*.{mjs,js,json,scss,ts,tsx}\" \"src/**/*.{mjs,js,json,scss,ts,tsx}\" \"tools/**/*.{mjs,js,json,scss,ts,tsx}\"",
"test": "node tools/pre-test.js && cross-env SPORT=basketball jest --testPathIgnorePatterns football && cross-env SPORT=football jest --testRegex \"football.*\\.test\\.c?[jt]sx?\"",
"test-e2e": "node tools/pre-test.js && karma start karma.conf.js",
Expand Down

0 comments on commit 78ec35d

Please sign in to comment.