Skip to content
Open
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/lint-code.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,5 +18,5 @@ jobs:
with:
node-version-file: '.node-version'
cache: 'npm'
- run: npm ci
- run: npm install --ignore-scripts
Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This is not going to honor the lock file. Can we do this?

Suggested change
- run: npm install --ignore-scripts
- run: npm ci --ignore-scripts

Copy link
Copy Markdown
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

It doesn't work, it is not possible to create a lock file with our set of transitive dependencies derived from the ws dependency and the native dependencies that will satisfy npm ci.

Copy link
Copy Markdown
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

But npm ci seems to be passing on main now. Pure black magic, I don't understand. (not gonna merge unless we need this)

- run: npm run lint:required
83 changes: 35 additions & 48 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 1 addition & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -243,8 +243,6 @@
}
},
"optionalDependencies": {
"bufferutil": "^4.0.9",
"segfault-handler": "^1.3.0",
"utf-8-validate": "^5.0.10"
"segfault-handler": "^1.3.0"
}
}
Loading