Skip to content

Update env vars for Playground Mono and add webservice (#55) #124

Update env vars for Playground Mono and add webservice (#55)

Update env vars for Playground Mono and add webservice (#55) #124

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
- name: Run Jest tests
run: npm run test