We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d449be9 commit b404f8cCopy full SHA for b404f8c
1 file changed
.github/workflows/lint.yml
@@ -0,0 +1,22 @@
1
+name: Lint DevTools frontend
2
+
3
+on:
4
+ workflow_call:
5
6
+jobs:
7
+ build:
8
+ runs-on: ubuntu-latest
9
+ steps:
10
+ - uses: actions/checkout@v3
11
+ with:
12
+ path: src
13
+ - name: setup-depot-tools
14
+ uses: newkdev/setup-depot-tools@v1.0.1
15
+ - name: Sync gclient workspace
16
+ run: |
17
+ gclient config --unmanaged src --name src
18
+ gclient sync --no-history
19
+ - name: Run linter
20
21
+ cd src
22
+ npm run lint -- --fix=false
0 commit comments