Skip to content

Commit

Permalink
trigger ci on push; rewrite nodejs
Browse files Browse the repository at this point in the history
  • Loading branch information
AndreyMlashkin committed Oct 16, 2024
1 parent 40cdd92 commit 758a57e
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 3 deletions.
3 changes: 1 addition & 2 deletions .github/workflows/reusable-verify-proofs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,8 +40,7 @@ jobs:
uses: actions/[email protected]

- name: Install node dependencies
run: |
npm install
run: npm install

- name: Download artifact
uses: actions/download-artifact@v3
Expand Down
8 changes: 7 additions & 1 deletion .github/workflows/verify-proof.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,10 @@ on:
evm-placeholder-verification-ref:
type: string
description: "Reference to evm-placeholder-verification repository to checkout at"
pull_request:
push:
branches:
- master

jobs:
verify-proofs:
Expand All @@ -19,7 +23,9 @@ jobs:
repository: 'NilFoundation/evm-placeholder-verification'
ref: ${{ inputs.evm-placeholder-verification-ref }}
- name: Setup Node.js environment
uses: actions/[email protected]
uses: actions/setup-node@v4
with:
node-version: 18
- name: Install node dependencies
run: npm install
- name: Download artifact
Expand Down

0 comments on commit 758a57e

Please sign in to comment.