Skip to content

chore(deps): update typescript-eslint monorepo to v8.4.0 #5065

chore(deps): update typescript-eslint monorepo to v8.4.0

chore(deps): update typescript-eslint monorepo to v8.4.0 #5065

Workflow file for this run

# This workflow will do a clean install of node dependencies, build the source code and run tests across different versions of node
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions
name: Lint check CI
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
style-check:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [20.x]
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 install -g yarn
- run: yarn install
- run: yarn spell-check
- run: yarn eslint
- run: yarn stylelint
- run: yarn test