Browse Source

feature(workflows): Add ESLint check to workflow (#456)

* feature(workflows): Add ESLint check to workflow

* Use setup-node v1.x.x instead of v1.0.0

Co-Authored-By: Jacob Bolda <me@jacobbolda.com>

Co-authored-by: Jacob Bolda <me@jacobbolda.com>
Rajiv Shah 5 năm trước cách đây
mục cha
commit
018b1d877d
1 tập tin đã thay đổi với 13 bổ sung1 xóa
  1. 13 1
      .github/workflows/check-on-push.yml

+ 13 - 1
.github/workflows/check-on-push.yml

@@ -1,4 +1,4 @@
-name: clippy check
+name: clippy and eslint check
 
 on:
   push:
@@ -23,3 +23,15 @@ jobs:
         env:
           TAURI_DIST_DIR: ${{ runner.workspace }}/tauri/tauri/test/fixture/dist
           TAURI_DIR: ${{ runner.workspace }}/tauri/tauri/test/fixture/src-tauri
+
+  eslint-check:
+    runs-on: ubuntu-latest
+    steps:
+      - uses: actions/checkout@v2
+      - uses: actions/setup-node@v1
+      - name: install deps via yarn
+        working-directory: ./cli/tauri.js
+        run: yarn
+      - name: run eslint
+        working-directory: ./cli/tauri.js
+        run: yarn lint