Skip to content

[Snyk] Upgrade @fastify/cookie from 9.2.0 to 9.4.0 #5

[Snyk] Upgrade @fastify/cookie from 9.2.0 to 9.4.0

[Snyk] Upgrade @fastify/cookie from 9.2.0 to 9.4.0 #5

Workflow file for this run

name: Run E2E Tests
on: [pull_request]
jobs:
run-e2e-tests:
name: Run E2E Tests
runs-on: ubuntu-latest
services:
postgres:
image: bitnami/postgresql
ports:
- 5434:5432
env:
POSTGRESQL_USERNAME: docker
POSTGRESQL_PASSWORD: docker
POSTGRESQL_DATABASE: apisolid
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 18
cache: "npm"
- run: npm ci
- run: npm run test:e2e
env:
JWT_SECRET: testing
DATABASE_URL: "postgresql://docker:docker@localhost:5434/apisolid?schema=public"