Skip to content

Closes #3: [Enhancement] Add README on the structure of the app and u… #7

Closes #3: [Enhancement] Add README on the structure of the app and u…

Closes #3: [Enhancement] Add README on the structure of the app and u… #7

Workflow file for this run

---
name: build app
on: [push, pull_request]
jobs:
build-test:
strategy:
matrix:
node-version:
- 18
- 20
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up node-${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- name: Install dependencies and build the code
run: |
npm install
npm run build