Skip to content

chore: bump eslint-config-next from 14.2.3 to 14.2.4 #455

chore: bump eslint-config-next from 14.2.3 to 14.2.4

chore: bump eslint-config-next from 14.2.3 to 14.2.4 #455

Workflow file for this run

name: CI
on:
push:
branches: ['main']
pull_request:
branches: ['main']
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.x, 20.x]
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/
steps:
- name: Checkout
uses: actions/checkout@v4.1.6
- name: Install PNPM
uses: pnpm/action-setup@v4
with:
version: 8.9.2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4.0.2
with:
node-version: ${{ matrix.node-version }}
cache: 'pnpm'
- name: Install dependencies
run: pnpm install --frozen-lockfile
- name: Build project
run: pnpm build
- name: Run Tests
run: pnpm test:ci