Skip to content

Add UI for checking eligibility #178

Add UI for checking eligibility

Add UI for checking eligibility #178

Workflow file for this run

name: UI - CI
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
build:
strategy:
matrix:
os: [ubuntu-latest, windows-latest]
node-version: [20.x, 21.x] # See supported Node.js release schedule at https://nodejs.org/en/about/releases/
runs-on: ${{ matrix.os }}
defaults:
run:
working-directory: ui
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
cache-dependency-path: ui/package-lock.json
- run: npm install
- run: npm run lint
- run: npm run build