Update dependency node to v22 #2405
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: Lint | |
on: | |
push: | |
branches: [kuso] | |
pull_request: | |
branches: [kuso] | |
jobs: | |
lint: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Setup Node.js | |
uses: actions/setup-node@v3 | |
- name: Install Dependencies | |
run: yarn install --frozen-lockfile | |
- name: Lint ESLint | |
run: yarn lint:eslint | |
- name: Lint Prettier | |
run: yarn lint:prettier |