Remove database verification at the logout process #1
Workflow file for this run
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
# WARNING | |
# This workflow does not check for 'pull_request' event_name | |
# Do not use it for on:push | |
name: E2E Test | |
on: | |
pull_request: | |
branches: | |
- staging | |
- main | |
env: | |
NODE_VERSION: 21.6.1 | |
jobs: | |
setup: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version: ${{ env.NODE_VERSION }} | |
cache: 'npm' | |
- name: Cache NPM | |
uses: actions/cache/save@v4 | |
with: | |
path: ~/.npm | |
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }} | |
- name: Install dependencies | |
run: npm ci --no-audit | |
auth-service-e2e: | |
needs: setup | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version: ${{ env.NODE_VERSION }} | |
- name: Restore npm cache | |
uses: actions/cache/restore@v4 | |
with: | |
path: ~/.npm | |
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }} | |
fail-on-cache-miss: true | |
- name: Install dependencies | |
run: npm install --only=dev --no-audit | |
- name: Load .env variables | |
id: dotenv | |
uses: falti/dotenv-action@v1.1.4 | |
- name: Testing | |
run: npx nx e2e auth-service-e2e | |
env: | |
AUTH_SERVICE_PORT: ${{ steps.dotenv.outputs.AUTH_SERVICE_PORT }} | |
DATABASE_AUTH_HOST: ${{ steps.dotenv.outputs.DATABASE_AUTH_HOST }} | |
DATABASE_AUTH_PORT: ${{ steps.dotenv.outputs.DATABASE_AUTH_PORT }} | |
DATABASE_AUTH_USERNAME: ${{ steps.dotenv.outputs.DATABASE_AUTH_USERNAME }} | |
DATABASE_AUTH_PASSWORD: ${{ steps.dotenv.outputs.DATABASE_AUTH_PASSWORD }} | |
DATABASE_AUTH_DBNAME: ${{ steps.dotenv.outputs.DATABASE_AUTH_DBNAME }} | |
JWT_SECRET_KEY: ${{ steps.dotenv.outputs.JWT_SECRET_KEY }} | |
JWT_EXPIRES_IN: ${{ steps.dotenv.outputs.JWT_EXPIRES_IN }} | |
financial-service-e2e: | |
needs: setup | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version: ${{ env.NODE_VERSION }} | |
- name: Restore npm cache | |
uses: actions/cache/restore@v4 | |
with: | |
path: ~/.npm | |
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }} | |
fail-on-cache-miss: true | |
- name: Install dependencies | |
run: npm install --only=dev --no-audit | |
- name: Load .env variables | |
id: dotenv | |
uses: falti/dotenv-action@v1.1.4 | |
- name: Testing | |
run: npx nx e2e financial-service-e2e | |
env: | |
FINANCIAL_SERVICE_PORT: ${{ steps.dotenv.outputs.FINANCIAL_SERVICE_PORT }} | |
DATABASE_FINANCIAL_HOST: ${{ steps.dotenv.outputs.DATABASE_FINANCIAL_HOST }} | |
DATABASE_FINANCIAL_PORT: ${{ steps.dotenv.outputs.DATABASE_FINANCIAL_PORT }} | |
DATABASE_FINANCIAL_USERNAME: ${{ steps.dotenv.outputs.DATABASE_FINANCIAL_USERNAME }} | |
DATABASE_FINANCIAL_PASSWORD: ${{ steps.dotenv.outputs.DATABASE_FINANCIAL_PASSWORD }} | |
DATABASE_FINANCIAL_DBNAME: ${{ steps.dotenv.outputs.DATABASE_FINANCIAL_DBNAME }} | |
JWT_SECRET_KEY: ${{ steps.dotenv.outputs.JWT_SECRET_KEY }} | |
JWT_MAX_AGE: ${{ steps.dotenv.outputs.JWT_MAX_AGE }} | |
user-service-e2e: | |
needs: setup | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version: ${{ env.NODE_VERSION }} | |
- name: Restore npm cache | |
uses: actions/cache/restore@v4 | |
with: | |
path: ~/.npm | |
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }} | |
fail-on-cache-miss: true | |
- name: Install dependencies | |
run: npm install --only=dev --no-audit | |
- name: Load .env variables | |
id: dotenv | |
uses: falti/dotenv-action@v1.1.4 | |
- name: Testing | |
run: npx nx e2e user-service-e2e | |
env: | |
USER_SERVICE_PORT: ${{ steps.dotenv.outputs.USER_SERVICE_PORT }} | |
DATABASE_USER_HOST: ${{ steps.dotenv.outputs.DATABASE_USER_HOST }} | |
DATABASE_USER_PORT: ${{ steps.dotenv.outputs.DATABASE_USER_PORT }} | |
DATABASE_USER_USERNAME: ${{ steps.dotenv.outputs.DATABASE_USER_USERNAME }} | |
DATABASE_USER_PASSWORD: ${{ steps.dotenv.outputs.DATABASE_USER_PASSWORD }} | |
DATABASE_USER_DBNAME: ${{ steps.dotenv.outputs.DATABASE_USER_DBNAME }} | |
JWT_SECRET_KEY: ${{ steps.dotenv.outputs.JWT_SECRET_KEY }} | |
JWT_MAX_AGE: ${{ steps.dotenv.outputs.JWT_MAX_AGE }} |