chore(deps): lock file maintenance #12
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: PR | |
on: | |
pull_request: | |
jobs: | |
test: | |
name: Test Action | |
runs-on: ubuntu-latest | |
permissions: | |
pull-requests: write | |
steps: | |
# Rebuild ./dist | |
- uses: actions/checkout@v4 | |
- uses: actions/[email protected] | |
with: | |
node-version: 20.x | |
- name: Rebuild the dist/ directory | |
run: npm run dist | |
# Test action | |
- uses: ./ | |
with: | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
add_markdown: | | |
--- | |
# Things! | |
## Excitement! | |
[Links!](https://google.ca) | |
`Code!` | |
# Test with different inputs | |
- uses: ./ | |
with: | |
limit_to_pr_opened: true | |
add_markdown: | | |
--- | |
# Things! | |
## Excitement! | |
[Links!](https://google.ca) | |
`Code!` |