fix: Sequential mail sending aborts after one mail is rejected (#5179) #1049
This file contains 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: windows-tests | |
on: | |
push: | |
branches: ['main'] | |
paths-ignore: | |
- 'docs/**' | |
workflow_dispatch: | |
jobs: | |
tests: | |
runs-on: windows-latest | |
timeout-minutes: 30 | |
steps: | |
- uses: actions/checkout@v4 | |
- run: git fetch --depth=1 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 22 | |
cache: 'yarn' | |
- run: yarn install --frozen-lockfile --ignore-engines | |
- run: yarn test:unit | |
- run: yarn test:integration | |
if: always() | |
- run: yarn test:self | |
- run: yarn test:type |