Skip to content

Merge pull request #106 from sambauers/dependabot/npm_and_yarn/jest-2… #409

Merge pull request #106 from sambauers/dependabot/npm_and_yarn/jest-2…

Merge pull request #106 from sambauers/dependabot/npm_and_yarn/jest-2… #409

Workflow file for this run

name: Lint (ESLInt)
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
lint:
runs-on: ubuntu-latest
steps:
# checkout
- name: Checkout repository code
uses: actions/checkout@v4
# install
- name: Setup PNPM
uses: pnpm/action-setup@v2
with:
version: 8.7.4
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version-file: '.nvmrc'
cache: 'pnpm'
- name: Install dependencies
run: pnpm install --frozen-lockfile
# lint
- name: Run linters
run: pnpm lint