Skip to content

Commit de7f41a

Browse files
committed
fix: npm ci doesn't support workspaces
1 parent 560024a commit de7f41a

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323

2424
- run: npm i -g npm@latest
2525

26-
- run: npm ci -ws
26+
- run: npm i -ws
2727
- run: npm run lint -ws
2828
- run: npm run build -ws
2929
# TODO - tests

.github/workflows/npm-release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333
- run: npm i -g npm@latest
3434

3535
- run: |
36-
npm ci -ws
36+
npm i -ws
3737
npm run lint -ws
3838
npm run build -ws
3939
npm pack -ws

0 commit comments

Comments
 (0)