Skip to content

v0.7.0

v0.7.0 #58

Workflow file for this run

name: Node.js CI
on: [push, pull_request]
jobs:
tests:
runs-on: ubuntu-latest
intent:

Check failure on line 9 in .github/workflows/tests.yml

View workflow run for this annotation

GitHub Actions / Node.js CI

Invalid workflow file

The workflow is not valid. .github/workflows/tests.yml (Line: 9, Col: 5): Unexpected value 'intent'
matrix:
node-version: [18.x]
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Setup Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- name: foundry-toolchain
uses: foundry-rs/[email protected]
- name: Install dependencies
run: yarn install
- name: Run tests
run: yarn test
env:
MAINNET_RPC_URL: ${{ secrets.MAINNET_RPC_URL }}