allow update zkp request for owner #2921
Workflow file for this run
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
name: Tests | |
on: [push, pull_request] | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node: [ 20 ] | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Use Nodejs | |
uses: actions/setup-node@v4 | |
with: | |
node-version: ${{ matrix.node }} # https://github.com/actions/setup-node#matrix-testing | |
- name: Install node_modules | |
run: npm install | |
- name: Test contracts | |
run: npm run test |