Skip to content

LDK 123

LDK 123 #524

Workflow file for this run

name: lib-lint-check
on:
pull_request:
branches:
- 'master'
defaults:
run:
working-directory: lib
jobs:
eslint:
name: Run lint check
runs-on: ubuntu-latest
steps:
- name: Check out Git repository
uses: actions/checkout@v4
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: 20
- name: Cache node modules
uses: actions/cache@v4
id: npmcache
with:
path: lib/node_modules
key: node-modules-${{ hashFiles('**/yarn.lock') }}
- name: Install lib dependencies
if: steps.npmcache.outputs.cache-hit != 'true'
run: yarn install
- name: Lint check
run: yarn lint:check