Skip to content

Bump eslint from 8.57.1 to 9.39.2 #43

Bump eslint from 8.57.1 to 9.39.2

Bump eslint from 8.57.1 to 9.39.2 #43

Workflow file for this run

name: CI
on:
pull_request:
branches:
- master
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [22.x]
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Setup Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
- name: Install dependencies
run: npm ci
- name: Run linting
run: npm run lint
- name: Build project
run: npm run build