fix(deps): update dependency @types/nodemailer to v6.4.18 #312
Workflow file for this run
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: 32.Test Sandbox codebase | |
on: | |
push: | |
paths: | |
- sandbox/m365mock/** | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
test-m365mock: | |
runs-on: ubuntu-22.04 | |
timeout-minutes: 20 | |
steps: | |
- uses: hmarr/debug-action@f7318c783045ac39ed9bb497e22ce835fdafbfe6 | |
- uses: actions/checkout@ff7abcd0c3c05ccf6adc123a8cd1fd4fb30fb493 | |
- name: Setup Tools | |
uses: ./.github/actions/setup-tools | |
- name: Install Dependencies | |
run: pnpm install --frozen-lockfile | |
working-directory: sandbox/m365mock | |
- name: Build the Application | |
run: pnpm run build | |
working-directory: sandbox/m365mock | |
- name: Run Tests (Verbose) | |
run: pnpm test test.ts -- --verbose | |
working-directory: sandbox/m365mock |