Skip to content

Adding Dockerfile and minor UI fixes #23

Adding Dockerfile and minor UI fixes

Adding Dockerfile and minor UI fixes #23

name: NextJS Lint and Build
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
lint-and-build:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version: '20.x'
cache: 'npm' # Cache npm dependencies
- name: Install dependencies
run: npm install
- name: Run ESLint
run: npm run lint
- name: Build the project
run: npm run build
- name: TypeScript type check
run: npm run type-check