tauri/.github/workflows/js-lint.yml
Lucas Fernandes Nogueira f1a8a65be2
perf(workflow) filter workflow with the paths option (#828)
* 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
2020-07-15 08:14:11 -03:00

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