Skip to content

Commit

Permalink
Update ci flag for CI
Browse files Browse the repository at this point in the history
  • Loading branch information
ytham committed Jan 16, 2024
1 parent 11e917c commit 689414b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ jobs:

- name: Set all packages to local and build
working-directory: ./
run: npm run local --ci
run: npm run local ci

# - name: Build Client
# working-directory: ./client
Expand Down
2 changes: 1 addition & 1 deletion scripts/setLocal.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ const { execSync } = require("child_process");
const fs = require("fs");

let ci = false;
if (process.argv[3] === "--ci") {
if (process.argv[2].toLowerCase() === "ci") {
ci = true;
}

Expand Down

0 comments on commit 689414b

Please sign in to comment.