update Node.js version in example #3
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: Start Redis server with remove container on exit flag | |
| on: [push, pull_request] | |
| jobs: | |
| redis-action: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| redis-version: [5, 6, 7] | |
| name: Start Redis Server v${{ matrix.redis-version }} | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Start Redis Server | |
| uses: ./ | |
| with: | |
| redis-version: ${{ matrix.redis-version }} | |
| redis-remove-container-on-exit: true # false by default |