Skip to content

Bump send and express #246

Bump send and express

Bump send and express #246

Workflow file for this run

name: ci
on:
push:
branches:
- '*'
pull_request:
branches:
- main
- development
jobs:
build:
name: Build
runs-on: ubuntu-latest
services:
redis:
image: redis
ports:
- 6379:6379
steps:
- name: Checkout code
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Set up nodejs
uses: actions/setup-node@v3
with:
node-version: 'lts/*'
cache: 'npm'
- name: npm CI
run: npm ci
- name: npm Check
run: npm run check
- name: npm Test
run: npm run test
- name: npm Build
run: npm run build