Skip to content

⬆️ Bump nodemailer from 6.8.0 to 6.9.9 #175

⬆️ Bump nodemailer from 6.8.0 to 6.9.9

⬆️ Bump nodemailer from 6.8.0 to 6.9.9 #175

Workflow file for this run

name: Node CI
on:
push:
branches-ignore:
- master
jobs:
release:
name: Build and Test
runs-on: ubuntu-latest
if: "!contains(github.event.head_commit.message, '[skip ci]')"
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: 16
cache: 'npm'
- name: Install Dependencies
run: npm ci
- name: Build TypeScript
run: npm run build
- name: Run Tests
run: npm run test