mirror of
https://github.com/tauri-apps/tauri.git
synced 2024-11-28 20:48:52 +03:00
21 lines
434 B
YAML
21 lines
434 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
|