Skip to content

chore: Bump eslint from 8.57.0 to 9.5.0 #827

chore: Bump eslint from 8.57.0 to 9.5.0

chore: Bump eslint from 8.57.0 to 9.5.0 #827

Workflow file for this run

name: Node.js CI
on:
pull_request:
branches: [master]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.x, 20.x]
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- name: Install dependencies
run: yarn install
- name: Build monorepo
run: yarn build
- name: Static analysis
run: yarn lint
- name: Run unit tests
run: yarn ci-test