Skip to content
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/__call-ci-node.yml
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ jobs:
run: npm version "${RELEASE_VERSION}" --no-git-tag-version

- name: Install dependencies
run: npm install --ignore-scripts
run: npm ci --ignore-scripts

- name: Test
id: test
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/__call-update-npm.yml
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ jobs:
run: npm version "${RELEASE_VERSION}" --no-git-tag-version

- name: Install dependencies
run: npm install --ignore-scripts
run: npm ci --ignore-scripts

- name: Build
run: npm run build
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/__validate-dependabot-config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
node-version: latest

- name: Install dependencies
run: npm install --ignore-scripts
run: npm ci --ignore-scripts

- name: Validate dependabot config
run: npm run validate-dependabot
2 changes: 1 addition & 1 deletion .github/workflows/__validate-renovate-config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ jobs:

- name: Install npm dependencies
if: steps.find-files.outputs.found != ''
run: npm install --ignore-scripts
run: npm ci --ignore-scripts

- name: renovate config validator
if: steps.find-files.outputs.found != ''
Expand Down
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -161,4 +161,3 @@ cython_debug/

# Node
node_modules/
package-lock.json
Loading