Skip to content

Commit 9f426ca

Browse files
authored
chore(cicd): updates github actions to force install deps (#236)
* chore(cicd): updates github actions to force install deps
1 parent f857182 commit 9f426ca

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
with:
2121
node-version: ${{ matrix.node }}
2222
- name: Install dependencies
23-
run: npm ci
23+
run: npm ci --force
2424
- name: Lint
2525
run: npm run lint
2626
- name: Format check

.github/workflows/npm_publish.yml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,8 @@ jobs:
1212
- uses: actions/setup-node@v1
1313
with:
1414
node-version: 16
15-
- name: Install Angular CLI
16-
run: npm install -g @angular/cli @angular/core
1715
- name: Install NPM Dependencies
18-
run: npm ci
16+
run: npm ci --force
1917
- name: Build project
2018
run: ng build --configuration production --project=ngx-cookie-service
2119
- name: Publish to NPM

0 commit comments

Comments
 (0)