Skip to content

build(deps-dev): bump eslint-config-next from 15.1.4 to 15.1.7 #121

build(deps-dev): bump eslint-config-next from 15.1.4 to 15.1.7

build(deps-dev): bump eslint-config-next from 15.1.4 to 15.1.7 #121

Workflow file for this run

name: CI Checker
on:
pull_request:
branches: main
jobs:
build:
strategy:
matrix:
node-version: [20.x, 22.x]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: npm
- name: Restore cache
uses: actions/cache@v4
with:
path: .next/cache
key: ${{ runner.os }}-nextjs-${{ hashFiles('**/package-lock.json') }}-${{ hashFiles('**.[jt]s', '**.[jt]sx') }}
restore-keys: |
${{ runner.os }}-nextjs-${{ hashFiles('**/package-lock.json') }}-
- name: Install dependencies
run: npm ci
- name: Run linter
run: npm run lint
- name: Build project
run: npm run build
env:
EXPORT: 1
UNOPTIMIZED: 1
BASE_PATH: ""