Skip to content

Commit

Permalink
Fix: disable fail-fast in CI workflows and update compile command in …
Browse files Browse the repository at this point in the history
…package.json
  • Loading branch information
baruchiro committed Dec 25, 2024
1 parent 54e541a commit f798f5e
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ on:
jobs:
build:
strategy:
fail-fast: true
fail-fast: false
matrix:
os:
- macos-13
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ jobs:
contents: write # Allows this job to create releases

strategy:
fail-fast: true
fail-fast: false
matrix:
os:
- macos-13
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
"build:main": "cd ./packages/main && vite build",
"build:preload": "cd ./packages/preload && vite build",
"build:renderer": "cd ./packages/renderer && vite build",
"compile": "cross-env MODE=production yarn build && electron-builder build --config electron-builder.yml --dir --config.asar=false",
"compile": "cross-env MODE=production yarn build && electron-builder build --config electron-builder.yml --dir",
"test": "yarn test:main && yarn test:preload && yarn test:renderer && yarn test:e2e",
"test:e2e": "yarn build && vitest run",
"test:main": "vitest run -r packages/main --passWithNoTests",
Expand Down

0 comments on commit f798f5e

Please sign in to comment.