Skip to content

🚨 [security] Update nodemailer 6.6.1 → 6.9.9 (minor) #163

🚨 [security] Update nodemailer 6.6.1 → 6.9.9 (minor)

🚨 [security] Update nodemailer 6.6.1 → 6.9.9 (minor) #163

Workflow file for this run

name: Lint
on:
push:
branches:
- master
- develop
pull_request:
branches:
- master
- develop
jobs:
build:
name: Lint
runs-on: ubuntu-latest
services:
# Label used to access the service container
postgres:
# Docker Hub image
image: postgres
# Provide the password for postgres
env:
POSTGRES_USER: entel
POSTGRES_PASSWORD: crazypassword
POSTGRES_DB: enteldb
# Set health checks to wait until postgres has started
options: >-
--health-cmd pg_isready
--health-interval 10s
--health-timeout 5s
--health-retries 5
ports:
# Maps tcp port 5432 on service container to the host
- 5432:5432
env:
DATABASE_URL: postgresql://entel:crazypassword@localhost:5432/enteldb
steps:
- uses: actions/checkout@v2
- name: Use Node.js
uses: actions/setup-node@v1
with:
node-version: "14.x"
- name: Get yarn cache directory path
id: yarn-cache-dir-path
run: echo "::set-output name=dir::$(yarn cache dir)"
- name: Cache Node.js modules
id: yarn-cache
uses: actions/cache@v1
with:
path: ${{ steps.yarn-cache-dir-path.outputs.dir }}
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }}
restore-keys: |
${{ runner.os }}-yarn-
- name: Install dependencies
id: install-dependencies
run: yarn install
- name: Run linter
id: build-application
run: npm run lint