Skip to content

Fixed database tests #10

Fixed database tests

Fixed database tests #10

Workflow file for this run

# This workflow will do a clean installation of node dependencies, cache/restore them, build the source code and run tests across different versions of node
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-nodejs
name: CI/CD for Server and Web
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
server:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: '18.x'
- name: Install dependencies for server
run: |
cd server
npm install
- name: Run server tests
env:
OPEN_API_KEY: ${{ secrets.OPEN_API_KEY }}
run: |
cd server
npm test
web:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: '18.x'
- name: Install dependencies for web
run: |
cd web
npm install
- name: Build web app
run: |
cd web
npm run build
# build:
# runs-on: ubuntu-latest
# strategy:
# matrix:
# node-version: [18.x, 20.x, 22.x]
# # See supported Node.js release schedule at https://nodejs.org/en/about/releases/
# steps:
# - uses: actions/checkout@v4
# - name: Use Node.js ${{ matrix.node-version }}
# uses: actions/setup-node@v4
# with:
# node-version: ${{ matrix.node-version }}
# cache: 'npm'
# - run: npm ci
# - run: npm run build --if-present
# - run: npm test