Unverified Commit b6acf62a authored by boojack's avatar boojack Committed by GitHub

chore: add eslint check in action (#185)

* chore: add eslint check in action

* chore: update cache path
parent 2a11aed8
...@@ -28,6 +28,21 @@ jobs: ...@@ -28,6 +28,21 @@ jobs:
args: -v args: -v
skip-cache: true 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: go-tests:
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment