Skip to content

Bump body-parser and express #27

Bump body-parser and express

Bump body-parser and express #27

Workflow file for this run

name: CI Build and Lint
on: pull_request
jobs:
build-and-lint:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [20.x]
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- name: Install dependencies
run: npm ci
- name: Prettier check
run: npm run prettier:check
- name: Lint code
run: npm run lint
- name: Build `Production` code
run: npm run build:prod