Bump actions/setup-node from 3.6.0 to 4.0.2 (#54) #93
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: "Integration Test" | |
on: | |
pull_request: | |
push: | |
branches: | |
- main | |
- 'releases/*' | |
jobs: | |
# test action works running from the graph | |
test: | |
permissions: | |
pull-requests: write | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: ./ | |
with: | |
command: echo hello123 | |
template: "Some comment\n%command%" | |
update-text: "Some comment" | |
- uses: ./ | |
with: | |
command: echo "hello123 asdf" | |
template: "Some comment2\n%command%" | |
update-text: "Some comment2" | |