fix: update engines node to greater or equal than 20 #30
Workflow file for this run
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: Published | |
# trigger when merging 'feature' branch to 'master' | |
on: | |
pull_request: | |
types: [closed] | |
jobs: | |
print_title_of_pr: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Print Title of PR | |
run: echo The Title of your PR is ${{ github.event.pull_request.title }} | |
if_closed_pr_name_feat: | |
runs-on: ubuntu-latest | |
if: ${{ github.event.pull_request.title == 'feat*'}} | |
# if: ${{ github.event.pull_request.title == 'feat*'}} && {{ github.event.pull_request.merged == true }} | |
steps: | |
- name: Print Title of PR | |
run: echo The Title of your PR is ${{ github.event.pull_request.title }} | |
release: | |
name: Release | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Install Dependencies | |
run: echo "This should be triggered when a release is published" |