Bump eslint from 8.56.0 to 9.3.0 in the npm-packages group across 1 directory #32
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: Test the Action | |
on: | |
pull_request_target: | |
pull_request_review: | |
types: | |
- submitted | |
pull_request_review_comment: | |
types: | |
- created | |
- deleted | |
# Disable permissions for all available scopes by default. | |
# Any needed permissions should be configured at the job level. | |
permissions: {} | |
jobs: | |
# Tests that the Action works as expected. | |
# | |
# Performs the following steps: | |
# - Checks out the repository. | |
# - Runs the Action. | |
test: | |
name: Test the Action | |
runs-on: ubuntu-latest | |
permissions: | |
# The action needs permission `write` permission for PRs in order to add a comment. | |
pull-requests: write | |
contents: read | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 | |
- name: Run the Action | |
uses: ./ |