This commit is contained in:
Florian Federspiel
2023-11-25 16:53:52 +01:00
commit 677030f712
685 changed files with 148719 additions and 0 deletions

View File

@@ -0,0 +1,4 @@
# These are supported funding model platforms
github: [andris9] # enable once enrolled
custom: ['https://www.paypal.me/nodemailer']

View File

@@ -0,0 +1,21 @@
name: Run tests
on:
push:
pull_request:
jobs:
test:
strategy:
matrix:
node: [14.x, 16.x, 18.x]
os: [ubuntu-latest, macos-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node }}
- run: npm install
- run: npm test