Skip to content

Fix InlineAssembly schema errors #299

Fix InlineAssembly schema errors

Fix InlineAssembly schema errors #299

Workflow file for this run

name: Test
on:
push:
branches: [master]
pull_request: {}
concurrency:
group: test-${{ github.ref }}
cancel-in-progress: true
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
submodules: true
- uses: actions/setup-node@v3
with:
node-version: 18.x
cache: npm
- name: Install dependencies and build
run: npm ci
- name: Run tests
run: npm test -- --exclude test/solc.js
# Solc tests run significantly faster in Node 18
test-solc:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
submodules: true
- uses: actions/setup-node@v3
with:
node-version: 18.x
cache: npm
- name: Install dependencies and build
run: npm ci
- name: Run tests
run: npm test -- test/solc.js