mirror of
https://github.com/tauri-apps/tauri.git
synced 2024-12-01 11:13:40 +03:00
f1a8a65be2
* perf(workflow) run bundler test only when the bundler changes * perf(workflow) split clippy/eslint/fmt checks * chore(workflow) rerun if workflow file change * chore(workflow) fix name * fix(tests) bundler test on windows, removed since it's not used
21 lines
432 B
YAML
21 lines
432 B
YAML
name: eslint check
|
|
|
|
on:
|
|
pull_request:
|
|
paths:
|
|
- .github/workflows/js-lint.yml
|
|
- ./cli/tauri.js/**
|
|
|
|
jobs:
|
|
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
|