Skip to content

Commit e6651b0

Browse files
committed
new lint workflow for CD/CI
1 parent 4fb2809 commit e6651b0

1 file changed

Lines changed: 30 additions & 0 deletions

File tree

.github/workflows/web-ext-lint.yml

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
name: Lint Extensions
2+
3+
on:
4+
workflow_dispatch:
5+
pull_request:
6+
# push:
7+
# branches:
8+
# - main
9+
10+
jobs:
11+
lint:
12+
name: "Lint"
13+
runs-on: ubuntu-latest
14+
steps:
15+
- name: "Checkout"
16+
uses: actions/checkout@v6
17+
18+
- name: "web-ext lint newtab"
19+
uses: kewisch/action-web-ext@v1
20+
with:
21+
cmd: lint
22+
source: packages/newtab
23+
channel: listed
24+
25+
- name: "web-ext lint sidebar"
26+
uses: kewisch/action-web-ext@v1
27+
with:
28+
cmd: lint
29+
source: packages/sidebar
30+
channel: listed

0 commit comments

Comments
 (0)