Skip to content

problems with tests which needs authorization #8

problems with tests which needs authorization

problems with tests which needs authorization #8

Workflow file for this run

name: Backend Pipeline
on:
push:
branches:
- main
jobs:
backend_deployment:
runs-on: ubuntu-20.04
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: 20
- name: Install dependencies
run: cd backend && yarn install
- name: Lint
run: cd backend && yarn lint
- name: Test
run: cd backend && TEST_MONGODB_URI=${{ secrets.TEST_MONGODB_URI }} yarn test