添加 “在游戏列表中为自己100%完成的游戏添加背景色” 功能 #126
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: | |
pull_request: | |
push: | |
branches: | |
- master | |
jobs: | |
eslint: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-node@v1 | |
with: | |
node-version: '14' | |
- run: npm ci # or yarn install | |
- uses: sibiraj-s/action-eslint@v1 | |
with: | |
extensions: 'js' | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |