Skip to content

Commit

Permalink
chore: revert build script name change
Browse files Browse the repository at this point in the history
empty env var doesn't work
  • Loading branch information
steveoh committed Oct 7, 2024
1 parent 34aa1a2 commit 8b94672
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/pull_request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
run: npm ci

- name: 🏗 Run build script
run: npm run build
run: npm run build:vite

unit-test:
name: 🧪 Unit tests
Expand Down Expand Up @@ -71,4 +71,4 @@ jobs:
identity-provider: ${{ secrets.IDENTITY_PROVIDER }}
service-account-email: ${{ secrets.SERVICE_ACCOUNT_EMAIL }}
project-id: ${{ secrets.PROJECT_ID }}
build-command: npm run build -- --mode dev
build-command: npm run build:vite -- --mode dev
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
"dev": "vite",
"format": "prettier --write .",
"lint": "eslint src",
"build": "vite build",
"build:vite": "vite build",
"serve": "vite preview",
"local": "NODE_ENV=\"development\" node index.js",
"test": "TZ=UTC node --experimental-vm-modules node_modules/jest/bin/jest.js"
Expand Down

0 comments on commit 8b94672

Please sign in to comment.