Skip to content

Feature/il 353/new login design #324

Feature/il 353/new login design

Feature/il 353/new login design #324

name: Dev PR Build and Test Pipeline
on:
pull_request:
branches:
- development
jobs:
build-test:
name: Build and Test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Install dependencies
run: npm ci
- name: Linter
run: npm run lint
- name: Build
run: npm run build
- name: Test and Coverage
run: npm run test --coverage
- name: Check Production Build Correctness
run: rm -rf node_modules && npm ci --omit=dev && npm run build