We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8360c88 commit cbe948dCopy full SHA for cbe948d
1 file changed
.github/workflows/lint.yml
@@ -1,16 +1,25 @@
1
name: Lint test
2
-on: [push]
+
3
+on:
4
+ push:
5
+ pull_request:
6
+ merge_group:
7
+ workflow_dispatch:
8
9
jobs:
10
run:
11
name: Run
12
runs-on: ubuntu-latest
13
steps:
- - uses: actions/checkout@v6
- with:
- submodules: true
- - uses: actions/setup-node@v6
- node-version: 'lts/*'
14
- cache: 'npm'
15
- - run: npm install
16
- - run: $(npm bin)/web-ext lint --self-hosted
+ - uses: actions/checkout@v6
+ with:
+ submodules: recursive
17
18
+ - uses: actions/setup-node@v6
19
20
+ node-version: 'lts/*'
21
+ cache: npm
22
23
+ - run: npm ci
24
25
+ - run: npx web-ext lint --self-hosted
0 commit comments