Skip to content

ci(workflow): 🔧 replace deprecated cache action in lint workflow (#406) #1092

ci(workflow): 🔧 replace deprecated cache action in lint workflow (#406)

ci(workflow): 🔧 replace deprecated cache action in lint workflow (#406) #1092

Workflow file for this run

name: Next Lint Check
on: [push, pull_request]
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: '20'
cache: yarn
cache-dependency-path: yarn.lock
- name: Install Dependencies
run: yarn install --frozen-lockfile
- name: Run ESLint
run: yarn lint