Skip to content

Bump body-parser and express #20

Bump body-parser and express

Bump body-parser and express #20

Workflow file for this run

name: ESLint
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
lint:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18]
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
- name: Install dependencies
run: npm install
- name: Run ESLint
run: npx eslint . --ext .ts