fix(deps): update dependency nodemailer to v7 [security] #1997
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: 🚀 Deployment | |
| on: | |
| push: | |
| branches: ['main'] | |
| pull_request: | |
| branches: ['main'] | |
| jobs: | |
| type-check: | |
| name: ✅ Type Check | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout repo | |
| uses: actions/checkout@v4 | |
| - name: Download deps | |
| run: npm ci | |
| - name: Check types | |
| run: npm run type-check | |
| eslint: | |
| name: 🧪 ESLint | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout repo | |
| uses: actions/checkout@v4 | |
| - name: Download deps | |
| run: npm ci | |
| - name: Lint | |
| run: npm run lint | |
| prettier: | |
| name: 🔍 Prettier | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout repo | |
| uses: actions/checkout@v4 | |
| - name: Download deps | |
| run: npm ci | |
| - name: Format | |
| run: npm run format:check |