Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: should run npm install before build #1117

Merged
merged 2 commits into from
Jan 7, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 0 additions & 7 deletions .github/workflows/flow-task-test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -63,13 +63,6 @@ jobs:
verbosity: 3
wait: 120s

- name: Install Dependencies
id: npm-deps
run: npm ci

- name: Compile Project
run: npm run build

- name: Run Example Task File Test
run: |
task default-with-relay
Expand Down
1 change: 1 addition & 0 deletions Taskfile.helper.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ env:
tasks:
init:
cmds:
- task: "install:solo"
- task: "var:check"
- task: "run:build"

Expand Down
1 change: 0 additions & 1 deletion Taskfile.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@ tasks:
- echo "This command is meant to deploy a Solo network to a Kind cluster on your local machine, "
- echo "ctrl-c if this is not what you want to do."
- sleep 5
- task: "install:solo"
- task: "install"
- task: "start"

Expand Down
1 change: 0 additions & 1 deletion examples/Taskfile.examples.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@ tasks:
cmds:
- task: "install:kubectl:darwin"
- task: "install:kubectl:linux"
- task: "install:solo"
- task: "install"
- task: "start"

Expand Down
Loading