Skip to content

Commit

Permalink
Separate lint, test, and build scripts
Browse files Browse the repository at this point in the history
  • Loading branch information
nukeop committed Aug 9, 2023
1 parent 44852a0 commit 624c133
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,7 @@ jobs:
echo "C:\Program Files\Git\usr\bin" | Out-File -FilePath $env:GITHUB_PATH -Encoding utf8 -Append
echo "C:\Program Files\Git\mingw64\libexec\git-core" | Out-File -FilePath $env:GITHUB_PATH -Encoding utf8 -Append
- run: npm ci
- run: npm run lint
- run: npm test

build:
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
"postinstall": "lerna bootstrap --hoist && electron-builder install-app-deps",
"start": "lerna run start --stream",
"build": "shx rm -rf dist && lerna run build && npm run pack",
"test": "lerna run lint && lerna run build && lerna run test",
"test": "lerna run test",
"coverage": "lerna run coverage",
"lint": "lerna run lint",
"lint:fix": "lerna run lint:fix",
Expand Down

0 comments on commit 624c133

Please sign in to comment.