[Snyk] Security upgrade next from 13.2.4 to 13.5.4 #820
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Backend Integration | |
on: | |
pull_request: | |
branches: | |
- main | |
env: | |
PORT: 3100 | |
EMAIL_API_KEY: 'SG.SOME-LONG-SECRET-KEY' | |
APP_SECRET: 'SOME-LONG-SECRET-KEY' | |
CLOUDINARY_SECRET: CLOUDINARY_SECRET | |
CLOUDINARY_KEY: CLOUDINARY_KEY | |
PARTNERS_PORTAL_URL: http://127.0.0.1:3001 | |
DATABASE_URL: postgres://bloom-dev:[email protected]:5432/bloom | |
TEST_DATABASE_URL: postgres://bloom-dev:[email protected]:5432/bloom_test | |
BLOOM_API_BASE: https://fake_website.fake | |
BLOOM_LISTINGS_QUERY: "/fake" | |
jobs: | |
backend-integration: | |
runs-on: ubuntu-latest | |
services: | |
postgres: | |
image: postgres | |
env: | |
POSTGRES_HOST_AUTH_METHOD: trust | |
POSTGRES_DB: bloom-dev | |
POSTGRES_USER: bloom-dev | |
POSTGRES_PASSWORD: bloom | |
options: --health-cmd pg_isready --health-interval 10s --health-timeout 5s --health-retries 5 | |
ports: | |
- 5432:5432 | |
steps: | |
- name: Check out Git repository | |
uses: actions/checkout@v2 | |
- name: Check postgres | |
run: pg_isready -h 127.0.0.1 -p ${{ job.services.postgres.ports[5432] }} | |
- name: Set up Node.js | |
uses: actions/setup-node@v1 | |
with: | |
node-version: 18 | |
- name: yarn in root dir | |
run: yarn | |
- name: yarn in backend/core dir | |
working-directory: ./backend/core | |
run: yarn | |
- name: Check postgres | |
run: pg_isready -h 127.0.0.1 -p 5432 | |
- name: Not sure why but there is a dependency on this database existing | |
run: psql -c 'CREATE DATABASE bloom_test;' | |
env: | |
PGHOST: 127.0.0.1 | |
PGPASSWORD: bloom | |
PGUSER: bloom-dev | |
- name: yarn e2e tests backend | |
working-directory: ./backend/core | |
run: yarn test:e2e:local | |
env: | |
PGHOST: 127.0.0.1 | |
PGPASSWORD: bloom | |
PGUSER: bloom-dev |