Skip to content

ci(workflow): 🔧 harden docker gha cache handling (#408) #1101

ci(workflow): 🔧 harden docker gha cache handling (#408)

ci(workflow): 🔧 harden docker gha cache handling (#408) #1101

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