Skip to content

fix(deps): update all non-major dependencies #608

fix(deps): update all non-major dependencies

fix(deps): update all non-major dependencies #608

Workflow file for this run

name: Lint
on:
push:
branches:
- main
pull_request:
workflow_dispatch:
jobs:
lint:
name: Lint
runs-on: ubuntu-latest
timeout-minutes: 5
steps:
- uses: actions/checkout@v4.2.2
- uses: actions/setup-node@v4.1.0
with:
node-version-file: ".node-version"
- run: corepack enable yarn
- name: Get yarn cache directory path
id: yarn-cache-dir-path
run: echo "dir=$(yarn config get cacheFolder)" >> $GITHUB_OUTPUT
- name: Cache yarn packages
uses: actions/cache@v4.2.0
with:
path: ${{ steps.yarn-cache-dir-path.outputs.dir }}
key: node-cache-yarn-${{ runner.os }}-${{ hashFiles('**/yarn.lock') }}
- run: yarn install
- run: yarn lint