Merge pull request #474 from twxxk/issue473-add-link #197
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: | |
- master | |
pull_request_target: | |
jobs: | |
eslint: | |
timeout-minutes: 10 | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: setup node | |
uses: actions/setup-node@v4 | |
with: | |
node-version-file: '.node-version' | |
- run: yarn install | |
- run: yarn run lint |