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

chore(cicd): updates github actions to force install deps #236

Merged
merged 15 commits into from
Jun 2, 2022
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
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
with:
node-version: ${{ matrix.node }}
- name: Install dependencies
run: npm ci
run: npm ci --force
- name: Lint
run: npm run lint
- name: Format check
Expand Down
4 changes: 1 addition & 3 deletions .github/workflows/npm_publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,8 @@ jobs:
- uses: actions/setup-node@v1
with:
node-version: 16
- name: Install Angular CLI
run: npm install -g @angular/cli @angular/core
- name: Install NPM Dependencies
run: npm ci
run: npm ci --force
- name: Build project
run: ng build --configuration production --project=ngx-cookie-service
- name: Publish to NPM
Expand Down
3 changes: 1 addition & 2 deletions angular.json
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,5 @@
},
"cli": {
"analytics": "672a95e4-d4b2-4161-ac1f-25d2c513bef0"
},
"defaultProject": "ngx-cookie-service"
}
}
Loading