chore(deps-dev): bump @babel/preset-env from 7.25.4 to 7.26.0 #353
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: Test running setup-licensed | |
on: | |
pull_request: | |
types: | |
- opened | |
- reopened | |
- synchronize | |
# run on demand | |
workflow_dispatch: | |
jobs: | |
gem: | |
runs-on: ubuntu-latest | |
steps: | |
# checkout the repo | |
- uses: actions/checkout@v4 | |
# install ruby | |
- uses: ruby/setup-ruby@v1 | |
with: | |
bundler-cache: 'true' | |
ruby-version: "3.0" | |
# install node | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: "18.x" | |
# run the action | |
- name: Run setup-licensed | |
uses: ./ | |
with: | |
version: '4.x' | |
exe: | |
runs-on: ubuntu-latest | |
steps: | |
# checkout the repo | |
- uses: actions/checkout@v4 | |
# do not install ruby | |
# install node | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: "18.x" | |
# run the action | |
- name: Run setup-licensed | |
uses: ./ | |
with: | |
version: '3.x' |