Skip to content

[FEAT] Add GET payment status endpoint #50

[FEAT] Add GET payment status endpoint

[FEAT] Add GET payment status endpoint #50

Workflow file for this run

name: Unit tests
on:
pull_request:
branches: ['main', 'development']
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [20.x]
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
- name: Install dependencies
run: npm install
- name: Run unit tests
run: npm run test