Skip to content

fix: Fix default Bank Balance on signup #41

fix: Fix default Bank Balance on signup

fix: Fix default Bank Balance on signup #41

Workflow file for this run

name: Run Integration and Unit Tests
on:
push:
branches:
- dev
- main
pull_request:
branches:
- dev
- main
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [20.x]
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: "npm"
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
- name: Set up QEMU
uses: docker/setup-qemu-action@v2
- name: Set up Docker Compose
run: sudo apt-get update && sudo apt-get install docker-compose -y
- name: Install dependencies
run: npm ci
- name: Install Turbo
run: npm install turbo
- name: Run Integration Tests
run: npm run test:integration
- name: Run Unit Tests
run: npm run test:unit