Skip to content

Added Verify Screen functionality #8

Added Verify Screen functionality

Added Verify Screen functionality #8

Workflow file for this run

name: CI Pipeline
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: 18.19.0 # Ensure compatibility with Next.js
cache: 'npm'
- name: Install dependencies
run: npm ci
- name: Run Linting
run: npm run lint
- name: Run Tests
run: npm test
- name: Run Tests with Coverage
run: npm run test:coverage
- name: Build the Project
run: npm run build