Skip to content

feat: add end-to-end development setup with Docker, use sharp package for image optimization, and make Playground component responsive #28

feat: add end-to-end development setup with Docker, use sharp package for image optimization, and make Playground component responsive

feat: add end-to-end development setup with Docker, use sharp package for image optimization, and make Playground component responsive #28

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