Skip to content

Bump send and express in /lib #802

Bump send and express in /lib

Bump send and express in /lib #802

name: Check formatting and linting rules
on:
pull_request:
branches:
- main
jobs:
run-check-script:
name: Run Format Check Script
runs-on: ubuntu-latest
steps:
- name: Check out repository
uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 # v4.2.0
- name: Set up Node.js
uses: actions/setup-node@0a44ba7841725637a19e28fa30b79a866c81b0a6 # v4.0.4
with:
node-version-file: '.nvmrc'
cache: 'npm'
cache-dependency-path: '**/package-lock.json'
- name: Install root Node.js dependencies
run: npm ci
- name: Install all dependencies
run: npm run install:all
- name: Build lib
run: npm run build
working-directory: ./lib
- name: Install eslint
run: npm install -g eslint@8.57.0
- name: Install prettier
run: npm install -g prettier@3.2.5
- name: Run check script
run: node scripts/check_format_lint.js