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>
This commit is contained in:
Rajiv Shah 2020-02-24 13:31:14 -05:00 committed by GitHub
parent f05f6993bd
commit 018b1d877d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 13 additions and 1 deletions

View File

@ -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