Skip to content

fix stories workflow #7

fix stories workflow

fix stories workflow #7

Workflow file for this run

name: Lint
on:
push:
workflow_dispatch:
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Setup Node
uses: actions/setup-node@v3
with:
node-version: 20
cache: npm
- name: Install dependencies
run: npm ci
- name: Lint with ESLint
run: npm run lint