Skip to content

Merge pull request #9 from Web3-Pi/mgordel/gas-price-warn #32

Merge pull request #9 from Web3-Pi/mgordel/gas-price-warn

Merge pull request #9 from Web3-Pi/mgordel/gas-price-warn #32

Workflow file for this run

name: Tests
on:
push:
branches: [ '**' ]
pull_request:
branches: [ '**' ]
jobs:
lint-format-typecheck:
name: Unit and Integration Tests
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: 'lts/*'
cache: 'npm'
- name: Install dependencies
run: npm ci
- name: Unit Tests
run: npm run test:unit
- name: Integration Tests
run: npm run test:integration