mirror of https://github.com/tauri-apps/tauri
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:
parent
f05f6993bd
commit
018b1d877d
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue