Bump Microsoft.AspNetCore.OpenApi from 9.0.2 to 9.0.9 #30
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: Strategy matrix demo | |
| on: [push] | |
| jobs: | |
| nodejs-compatibility-test: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| version: [18, 20, 22, 23] # last 3 LTS releases and latest stable | |
| steps: | |
| - name: Set up Node.js version ${{ matrix.version }} | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: ${{ matrix.version }} | |
| - name: Test | |
| continue-on-error: ${{ matrix.version == 23 }} | |
| run: | | |
| echo "Running tests..." |