Skip to content

Finish login test & add github CI pipeline #1

Finish login test & add github CI pipeline

Finish login test & add github CI pipeline #1

Workflow file for this run

name: CI Pipeline
on:
push:
branches:
- staging
- main
pull_request:
branches:
- main
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
name: Building
steps:
- uses: actions/checkout@v4
- name: Create NodeJS env
uses: actions/setup-node@v4
with:
node-version: 22.x
- name: Install packages
run: npm ci && npm ci --prefix frontend && npm ci --prefix backend
- name: Run tests
run: npm test