Skip to content

build(deps-dev): bump @typescript-eslint/parser from 7.7.0 to 7.8.0 #2164

build(deps-dev): bump @typescript-eslint/parser from 7.7.0 to 7.8.0

build(deps-dev): bump @typescript-eslint/parser from 7.7.0 to 7.8.0 #2164

Workflow file for this run

name: e2e
on:
push:
paths-ignore:
- "docs/**"
branches:
- master
- release/*
pull_request:
types:
- opened
- synchronize
- reopened
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup NodeJS
uses: actions/setup-node@v4
with:
node-version: "18"
- name: Cache Node.js modules
uses: actions/cache@v4
with:
# npm cache files are stored in `~/.npm` on Linux/macOS
path: ~/.npm
key: ${{ runner.OS }}-node-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.OS }}-node-
${{ runner.OS }}-
- run: npm install --registry=https://registry.npmjs.org
- name: Running mongodb service
run: |
docker-compose up -d mongodb
docker ps -a
# install dependencies and build the project
- name: Running e2e testing
run: |
export SENDGRID_API_KEY=${{ secrets.SENDGRID_API_KEY }}
npm run test:e2e -- --runInBand --forceExit