Skip to content

build(deps-dev): bump eslint from 8.57.0 to 9.2.0 #684

build(deps-dev): bump eslint from 8.57.0 to 9.2.0

build(deps-dev): bump eslint from 8.57.0 to 9.2.0 #684

Workflow file for this run

name: Run tests
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Check out code
uses: actions/checkout@v4
- name: Use Node.js 20.x
uses: actions/setup-node@v4
with:
node-version: '20'
# cache: 'yarn'
- name: Cache dependencies
uses: actions/cache@v3
with:
path: |
node_modules
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }}
restore-keys: ${{ runner.os }}-yarn-
- name: Use corepack
run: corepack enable
- name: Install Dependencies
run: yarn install --immutable
- name: Build
run: yarn build