Skip to content

UADS-53 feat: Integrated CMS with Sign Up Page #70

UADS-53 feat: Integrated CMS with Sign Up Page

UADS-53 feat: Integrated CMS with Sign Up Page #70

Workflow file for this run

name: DEV Continuous Integration
on:
push:
branches-ignore:
- "main"
jobs:
BuildApp:
runs-on: ubuntu-latest
environment: DEV
defaults:
run:
working-directory: ./web
steps:
- name: Checkout the Repository
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: 20
- name: Install Dependencies
run: yarn
- name: Run Test Cases
run: yarn test
- name: Build the Project
run: yarn build