Skip to content

NestJS rewrite

NestJS rewrite #86

Workflow file for this run

name: Lint
on: [pull_request, push]
jobs:
run-linters:
name: Run linters
runs-on: ubuntu-latest
steps:
- name: Check out Git repository
uses: actions/checkout@v4
- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version: 20
cache: 'yarn'
- name: Install dependencies
run: yarn install --frozen-lockfile
- name: Run linters
run: yarn lint # assumes you have a `lint` script in package.json for ESLint and Prettier