Skip to content

build(deps-dev): bump prettier from 3.2.5 to 3.3.2 #1626

build(deps-dev): bump prettier from 3.2.5 to 3.3.2

build(deps-dev): bump prettier from 3.2.5 to 3.3.2 #1626

Workflow file for this run

name: ESLint
on: [push, pull_request]
jobs:
eslint:
runs-on: ubuntu-latest
strategy:
fail-fast: true
matrix:
node: [18, 20, 22]
steps:
- uses: actions/checkout@v4
with:
submodules: true
- uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node }}
- name: Get yarn cache directory path
id: yarn-cache-dir-path
run: echo "::set-output name=dir::$(yarn cache dir)"
- uses: actions/cache@v4
id: yarn-cache
with:
path: ${{ steps.yarn-cache-dir-path.outputs.dir }}
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }}
restore-keys: |
${{ runner.os }}-yarn-
- name: Install Dependencies
run: |
yarn install
- name: npm run lint
run: |
yarn lint