chore: add eslint check in action (#185)

* chore: add eslint check in action

* chore: update cache path
This commit is contained in:
boojack
2022-08-31 19:27:17 +08:00
committed by GitHub
parent 2a11aed881
commit b6acf62aab

View File

@@ -28,6 +28,21 @@ jobs:
args: -v
skip-cache: true
eslint-checks:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: "16"
cache: yarn
cache-dependency-path: "web/yarn.lock"
- run: yarn
working-directory: web
- name: Run eslint check
run: yarn lint
working-directory: web
go-tests:
runs-on: ubuntu-latest
steps: