build(deps): bump nodemailer from 7.0.11 to 7.0.12 (#329) #916
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: Continuous Integration | |
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| types: | |
| - opened | |
| - synchronize | |
| - reopened | |
| jobs: | |
| lint: | |
| runs-on: ubuntu-22.04 | |
| timeout-minutes: 5 | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v6 | |
| - name: Setup project | |
| uses: ./.github/actions/setup-project | |
| with: | |
| DECRYPTION_SECRET: ${{ secrets.DECRYPTION_SECRET }} | |
| - run: npm run eslint:quiet | |
| prettier: | |
| runs-on: ubuntu-22.04 | |
| timeout-minutes: 5 | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v6 | |
| - name: Setup project | |
| uses: ./.github/actions/setup-project | |
| with: | |
| DECRYPTION_SECRET: ${{ secrets.DECRYPTION_SECRET }} | |
| - run: npm run prettier:check |