test: limit ci test to node v20 only #2
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
on: | |
workflow_dispatch: | |
push: | |
branches: | |
- main | |
permissions: | |
contents: write | |
pull-requests: write | |
name: Prepare release | |
jobs: | |
release-please: | |
strategy: | |
matrix: | |
os: [ubuntu-22.04] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- uses: google-github-actions/release-please-action@v4 | |
with: | |
token: ${{secrets.RELEASE_PLEASE_PAT}} | |
# this is a built-in strategy in release-please, see "Action Inputs" | |
# for more options | |
release-type: node |