Skip to content

Commit

Permalink
fix workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
Lukasdotcom committed Dec 19, 2024
1 parent 7a4d5ce commit 3dcb29f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/build-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
# Makes sure the code is formatted correctly
- run: npm run pretty
# Runs tests
- run: npm run test
- run: npm run test:cli
# Runs eslint
- run: npm run lint
# Builds the project
Expand Down
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
"build": "export NODE_ENV=production APP_ENV=production && npm ci && npm run start2:part1 && next build",
"start": "export NODE_ENV=production APP_ENV=production && npm run start2",
"test": "export NODE_ENV=test APP_ENV=test && ts-node --project=tsconfig2.json scripts/jestSetup.ts && jest --watch",
"test:cli": "export NODE_ENV=test APP_ENV=test && ts-node --project=tsconfig2.json scripts/jestSetup.ts && jest",
"start:test": "export NODE_ENV=test APP_ENV=test && npm run clean && npm run start2",
"start2": "npm run start2:part1 && npm run start2:part2",
"start2:part1": "ts-node --project=tsconfig2.json scripts/startup.ts",
Expand Down

0 comments on commit 3dcb29f

Please sign in to comment.