Skip to content

chore(deps-dev): bump eslint-config-next from 14.2.4 to 15.0.0 #900

chore(deps-dev): bump eslint-config-next from 14.2.4 to 15.0.0

chore(deps-dev): bump eslint-config-next from 14.2.4 to 15.0.0 #900

Workflow file for this run

name: Pull Request
on:
pull_request:
branches:
- main
jobs:
build:
name: Build
runs-on: ubuntu-latest
strategy:
matrix:
node-version: ['20']
steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- run: |
npm ci
npm t --coverage
npm run build
env:
CI: true
NODE_OPTIONS: '--trace-warnings'