This repository was archived by the owner on Feb 7, 2025. It is now read-only.
Update action.yml with new action name #377
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: Test running setup-licensed | |
permissions: | |
contents: read | |
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@401c19e14f474b54450cd3905bb8b86e2c8509cf | |
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' |