Skip to content

Commit

Permalink
include dev
Browse files Browse the repository at this point in the history
  • Loading branch information
eladb committed Nov 26, 2023
1 parent 1dd77ca commit 30f201b
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/checks-pull.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
- name: Install winglang
run: npm i -g winglang
- name: Install dependencies
run: npm install
run: npm install --include=dev
working-directory: checks
- name: Test
run: wing test **/*.test.w
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/checks-release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
- name: Install winglang
run: npm i -g winglang
- name: Install dependencies
run: npm install
run: npm install --include=dev
working-directory: checks
- name: Test
run: wing test **/*.test.w
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/containers-pull.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
- name: Install winglang
run: npm i -g winglang
- name: Install dependencies
run: npm install
run: npm install --include=dev
working-directory: containers
- name: Test
run: wing test **/*.test.w
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/containers-release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
- name: Install winglang
run: npm i -g winglang
- name: Install dependencies
run: npm install
run: npm install --include=dev
working-directory: containers
- name: Test
run: wing test **/*.test.w
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/postgres-pull.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
- name: Install winglang
run: npm i -g winglang
- name: Install dependencies
run: npm install
run: npm install --include=dev
working-directory: postgres
- name: Test
run: wing test **/*.test.w
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/postgres-release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
- name: Install winglang
run: npm i -g winglang
- name: Install dependencies
run: npm install
run: npm install --include=dev
working-directory: postgres
- name: Test
run: wing test **/*.test.w
Expand Down
2 changes: 1 addition & 1 deletion library.w
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ pub class Library {

steps.push({
name: "Install dependencies",
run: "npm install",
run: "npm install --include=dev",
"working-directory": dir,
});

Expand Down

0 comments on commit 30f201b

Please sign in to comment.