remove specific multi-request test that now is included in verifier test #3197
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 |