Skip to content

Bump nodemailer from 6.5.0 to 6.6.1 #55

Bump nodemailer from 6.5.0 to 6.6.1

Bump nodemailer from 6.5.0 to 6.6.1 #55

Workflow file for this run

name: testConsumer
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version-file: '.nvmrc'
#https://docs.github.com/es/actions/guides/caching-dependencies-to-speed-up-workflows#using-the-cache-action
- name: Cache node modules
uses: actions/cache@v3
env:
cache-name: cache-node-modules
with:
# npm cache files are stored in `~/.npm` on Linux/macOS
path: ~/.npm
key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-build-${{ env.cache-name }}-
${{ runner.os }}-build-
${{ runner.os }}-
- run: npm install
- name: Start MongoDB
uses: supercharge/[email protected]
with:
mongodb-version: '4.4'
- run: npm run test:consumer:CI