fix(deps): update dependency @types/node to v20.17.13 #434
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: | |
push: | |
branches: | |
- main | |
pull_request: | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
# Due to https://github.com/actions/runner/issues/849, we have to use quotes for '3.0' | |
ruby: ["2.5", "2.6", "2.7", "3.0", "3.1", "3.2", "3.3"] | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: ${{ matrix.ruby }} | |
bundler-cache: true | |
- run: gem update --system | |
if: matrix.ruby != '2.5' && matrix.ruby != '2.6' && matrix.ruby != '2.7' | |
- run: gem update --system 3.2.3 | |
if: matrix.ruby == '2.6' | |
- run: bundle exec rake | |
- run: bundle exec rake | |
env: | |
RUBYOPT: --enable-frozen-string-literal | |
if: matrix.ruby != '2.5' |