Skip to content

Expose txs costs

Expose txs costs #343

Workflow file for this run

name: lint and test
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Use node 20
uses: actions/setup-node@v4
with:
node-version: 20
- name: Cache Node.js modules
uses: actions/cache@v4
with:
path: |
node_modules
yarn.lock
key: ${{ runner.os }}-node-${{ hashFiles('**/package.json') }}
restore-keys: |
${{ runner.os }}-node-
- name: Install dependencies
run: yarn
- name: Run all lint tasks
run: yarn lint
- name: Test everything
run: yarn test --verbose