chore(deps): bump actions/upload-artifact in the github-actions group… #633
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
| # Lint this change with the latest node LTS. | |
| name: Lint | |
| # https://github.community/t/how-to-trigger-an-action-on-push-or-pull-request-but-not-both/16662/2 | |
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| branches: | |
| - main | |
| permissions: | |
| contents: read | |
| jobs: | |
| lint: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - uses: actions/setup-node@v6 | |
| with: | |
| node-version: '20' | |
| - run: npm install | |
| - run: npm run lint |