build(deps-dev): bump @typescript-eslint/eslint-plugin from 8.14.0 to 8.15.0 #2387
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
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 |