Skip to content

feat(frontend): ensure BigAmount tag is set if amount >=100 #472

feat(frontend): ensure BigAmount tag is set if amount >=100

feat(frontend): ensure BigAmount tag is set if amount >=100 #472

Workflow file for this run

name: Home-App CI
on:
push:
branches: ["main"]
pull_request:
types: [opened, synchronize]
jobs:
build:
name: Build and Test
timeout-minutes: 7
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [20.x]
steps:
- name: Check out code
uses: actions/checkout@v4
with:
fetch-depth: 2
- name: Setup Node.js ${{ matrix.node-version }} environment
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: "npm"
- name: Install dependencies
run: npm ci --ignore-scripts
- name: Build
run: npm run build
- name: Test
run: npm run test