Skip to content

Add configurable local transaction fee rate #149

Add configurable local transaction fee rate

Add configurable local transaction fee rate #149

Workflow file for this run

on: [pull_request]
name: Install and Test
permissions:
contents: read
jobs:
test:
name: Install & Test
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [20.x, 22.x]
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: Cache node_modules
id: cache-modules
uses: actions/cache@v4
with:
path: node_modules
key: ${{ matrix.node-version }}-${{ runner.OS }}-build-${{ hashFiles('package.json') }}
- name: Build
if: steps.cache-modules.outputs.cache-hit != 'true'
run: npm install
- name: Lint
run: npm run lint:ci
- name: Test
run: npm run test