Skip to content

chore(deps): bump express from 4.18.2 to 4.19.2 #61

chore(deps): bump express from 4.18.2 to 4.19.2

chore(deps): bump express from 4.18.2 to 4.19.2 #61

Workflow file for this run

name: CI
on:
push:
branches: [master]
pull_request:
branches: [master, development]
jobs:
code_check:
name: Code Check
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 18
- name: Installing Dependencies
run: npm install
- name: Running prettier
run: npm run prettier:fix
- name: Running eslint
run: npm run lint:fix
- name: Running tests
run: npm run test
- name: Building
run: npm run build