Skip to content

add backend and api integration #7

add backend and api integration

add backend and api integration #7

Workflow file for this run

name: Build app
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18,20,22]
steps:
- name: Checkout Repository
uses: actions/checkout@v4
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- name: Install dependencies
run: |
npm install -g pnpm
pnpm install
- name: Build app
run: pnpm build