Skip to content

Update dependency eslint to v9 #3511

Update dependency eslint to v9

Update dependency eslint to v9 #3511

Workflow file for this run

name: Node
on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.x]
env:
CI: true
steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- name: yarn install & test
run: |
yarn install --immutable
yarn type-check
yarn lint
yarn test