Skip to content

rename types to dtos #13

rename types to dtos

rename types to dtos #13

Workflow file for this run

name: Build, Lint and Test Express.js
on:
pull_request:
jobs:
check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: '20'
- name: Install Dependencies
run: npm install
- name: Build
run: npm run build
- name: Lint
run: npm run lint
- name: Run Tests
run: npm test