Skip to content

fix: Prevent name collisions on express json validator #71

fix: Prevent name collisions on express json validator

fix: Prevent name collisions on express json validator #71

Workflow file for this run

name: Main build
on:
push:
branches:
- main
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Configure NodeJS
uses: actions/setup-node@v4
with:
node-version-file: '.nvmrc'
cache: npm
- name: Install Dependencies
run: npm ci
- name: Lint
run: npm run lint
- name: Unit tests
run: npm run test
- name: Build
run: npm run build