Skip to content

chore: Bump @typescript-eslint/utils from 6.5.0 to 6.10.0 #562

chore: Bump @typescript-eslint/utils from 6.5.0 to 6.10.0

chore: Bump @typescript-eslint/utils from 6.5.0 to 6.10.0 #562

Workflow file for this run

name: Node.js CI
on:
pull_request:
branches: [master]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [16.x, 18.x]
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
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