feat: quick freeze/unfreeze UTXOs on send page #2168
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build | |
on: | |
# Run the build for pushes and pull requests targeting master | |
push: | |
branches: | |
- master | |
pull_request: | |
branches: | |
- master | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node-version: ['v20.10.0'] | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
# Setup Node | |
- name: Setup (Node.js ${{ matrix.node-version }}) | |
uses: actions/setup-node@v4 | |
with: | |
node-version: ${{ matrix.node-version }} | |
# Install | |
- name: Install | |
run: npm ci | |
# Checks | |
- name: Lint | |
run: npm run lint | |
# Test | |
- name: Test | |
run: npm test | |
# Build | |
- name: Build | |
run: npm run build |