Skip to content

chore(deps-dev): bump ejs from 3.1.8 to 3.1.10 #289

chore(deps-dev): bump ejs from 3.1.8 to 3.1.10

chore(deps-dev): bump ejs from 3.1.8 to 3.1.10 #289

Workflow file for this run

name: Tests
on:
pull_request:
branches: [ main ]
jobs:
tests:
runs-on: ubuntu-latest
services:
mongo:
image: mongo:5
env:
MONGO_INITDB_ROOT_USERNAME: chat
MONGO_INITDB_ROOT_PASSWORD: chat
options: >-
--health-cmd mongo
--health-interval 20s
--health-timeout 10s
--health-retries 5
ports:
- 27017:27017
env:
NODE_ENV: 'test'
DATABASE_URL: 'mongodb://chat:chat@localhost:27017/tests?authSource=admin'
steps:
- uses: actions/checkout@v3
- uses: pnpm/action-setup@v2
with:
version: 7
- name: Use Node.js 20.x
uses: actions/setup-node@v3
with:
node-version: 20.x
cache: 'pnpm'
- run: pnpm i -g pnpm
- run: pnpm i
- run: pnpm run lint:ci
- run: pnpm exec migrate-mongo up
- run: pnpm run test:ci