forked from noir-lang/noir
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'upstream/master' into retain-brillig-st…
…ate-in-acvm
- Loading branch information
Showing
332 changed files
with
3,299 additions
and
2,186 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
name: Lockfile check | ||
|
||
on: | ||
pull_request: | ||
|
||
# This will cancel previous runs when a branch or PR is updated | ||
concurrency: | ||
group: ${{ github.workflow }}-${{ github.head_ref || github.ref || github.run_id }} | ||
cancel-in-progress: true | ||
|
||
jobs: | ||
yarn-lock: | ||
runs-on: ubuntu-latest | ||
timeout-minutes: 30 | ||
|
||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
|
||
# Errors if installation would result in modifications to yarn.lock | ||
- name: Install | ||
run: yarn --immutable | ||
shell: bash |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
name: Publish Nightly release | ||
on: | ||
workflow_dispatch: | ||
schedule: | ||
# Run a nightly release at 2 AM UTC | ||
- cron: "0 2 * * *" | ||
|
||
jobs: | ||
dispatch-publish-es: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Dispatch to publish-nargo | ||
uses: benc-uk/workflow-dispatch@v1 | ||
with: | ||
workflow: publish-nargo.yml | ||
token: ${{ secrets.NOIR_REPO_TOKEN }} | ||
# Omitting a tag results in a nightly | ||
inputs: "{ \"publish\": true }" | ||
|
||
|
||
- name: Dispatch to publish-es-packages | ||
uses: benc-uk/workflow-dispatch@v1 | ||
with: | ||
workflow: publish-es-packages.yml | ||
token: ${{ secrets.NOIR_REPO_TOKEN }} | ||
inputs: "{ \"noir-ref\": \"${{ env.GITHUB_REF }}\", \"npm-tag\": \"nightly\" }" |
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.