Skip to content

Commit

Permalink
CI - fix build call
Browse files Browse the repository at this point in the history
  • Loading branch information
juliecoust committed Jul 3, 2024
1 parent fcafc2b commit 38267a0
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 8 deletions.
7 changes: 0 additions & 7 deletions .github/workflows/public.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,13 +23,6 @@ jobs:

- name: Install dependencies
run: npm install

- name: Create env file
run: |
touch .env
echo ACCESS_TOKEN_SECRET = access_secret >> .env
echo REFRESH_TOKEN_SECRET = refresh_secret >> .env
cat .env

- name: Build the project
run: npm run prod:build
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
"tsc": "tsc",
"prod:build": "npm-run-all clean tsc copy-assets",
"prod:serve": "node dist/main.js",
"prod:start": "npm run build && node dist/main.js",
"prod:start": "npm run prod:build && node dist/main.js",
"dev:build": "npm-run-all clean tsc copy-assets",
"dev:serve": "nodemon -e js -w dist dist/main.js",
"dev:watch": "nodemon --watch './**/*.ts' --exec 'ts-node' src/main.ts"
Expand Down

0 comments on commit 38267a0

Please sign in to comment.