Skip to content

Per 9660 shares from invitation #886

Per 9660 shares from invitation

Per 9660 shares from invitation #886

Workflow file for this run

name: Linting
on:
pull_request:
workflow_dispatch:
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: "18"
- uses: actions/cache@v4
with:
path: node_modules
key: ${{ runner.os }}-node_modules-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-node_modules-
- name: Install dependencies
run: npm install
- name: Run Prettier
run: npx prettier --check --require-pragma .
- name: Run eslint
run: npm run lint