Skip to content

fix(deps): bump nodemailer from 6.9.10 to 6.9.14 #147

fix(deps): bump nodemailer from 6.9.10 to 6.9.14

fix(deps): bump nodemailer from 6.9.10 to 6.9.14 #147

Workflow file for this run

name: CI Test
on:
workflow_call:
pull_request:
branches: [master]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [16, 18, 19, 20]
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: "yarn"
- name: Install dependencies
run: yarn install --frozen-lockfile
- name: Run linter
run: yarn run lint
- name: Run tests
run: yarn run testonly