-
Notifications
You must be signed in to change notification settings - Fork 135
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
feat: Add npm builder workflow #881
feat: Add npm builder workflow #881
Conversation
set -euo pipefail | ||
|
||
# npm ci <args> | ||
./"$BUILDER_BINARY" ci \ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I wonder if we can't combine the ci
and build
steps. especially if we will always be running npm ci
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
One reason (maybe not a strong one) is if we want to turn on some OS-level hermeticity after downloading the dependencies in the future. It could arguably be done in the builder's code as well...
a112c83
to
1b1232a
Compare
d8dbf34
to
959ffab
Compare
friendly ping |
This PR adds a new workflow
builder_node_slsa3.yml
. It contains the structure to build upon for follow-up PRs that will create the node builder itself.