This repository was archived by the owner on Dec 3, 2025. It is now read-only.
Bump actions/setup-node from 4 to 6 #2820
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: | |
| pull_request: | |
| branches: | |
| - develop | |
| jobs: | |
| eslint: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-node@v6 | |
| with: | |
| node-version: 18 | |
| cache: "yarn" | |
| - run: yarn install | |
| - uses: crowdbotics/action-eslint@v2.2.1 | |
| with: | |
| eslint-args: "--config .eslintrc.json --ignore-path=.gitignore --quiet" | |
| extensions: "js,jsx,ts,tsx" | |
| annotations: true |