chore(deps): bump actions/setup-node from cd2651c46231bc0d6f48d6b34433b845331235fe to 13427813f706a0f6c9b74603b31103c40ab1c35a #19
Workflow file for this run
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
| name: "lint" | |
| on: | |
| workflow_call: | |
| pull_request_target: | |
| branches: [main] | |
| types: [opened, synchronize] | |
| concurrency: | |
| group: lint-${{ github.event.pull_request.number || github.ref }} | |
| cancel-in-progress: true | |
| permissions: | |
| contents: write | |
| issues: write | |
| pull-requests: write | |
| jobs: | |
| source: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@ff7abcd0c3c05ccf6adc123a8cd1fd4fb30fb493 # v5.0.0 | |
| with: | |
| fetch-depth: 0 | |
| persist-credentials: false | |
| - uses: actions/setup-node@13427813f706a0f6c9b74603b31103c40ab1c35a # v5.0.0 | |
| with: | |
| node-version-file: "package.json" | |
| cache: "npm" | |
| - name: Install dependencies | |
| run: npm ci | |
| - name: Run check | |
| run: npm run lint |