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 a5bcde1 commit bb2d549Copy full SHA for bb2d549
2 files changed
.github/dependabot.yml
@@ -0,0 +1,11 @@
1
+version: 2
2
+updates:
3
+ - package-ecosystem: "npm"
4
+ directory: "/"
5
+ schedule:
6
+ interval: "weekly"
7
+
8
+ - package-ecosystem: "github-actions"
9
10
11
.github/workflows/ci.yml
@@ -0,0 +1,34 @@
+name: CI
+on:
+ pull_request:
+ push:
+ branches:
+ - master
+permissions:
+ contents: read
12
+jobs:
13
+ validate:
14
+ name: validate
15
+ runs-on: ubuntu-latest
16
17
+ steps:
18
+ - name: Check out repository
19
+ uses: actions/checkout@v4
20
21
+ - name: Set up Node.js
22
+ uses: actions/setup-node@v4
23
+ with:
24
+ node-version: 24
25
+ cache: npm
26
27
+ - name: Install dependencies
28
+ run: npm ci
29
30
+ - name: Run lint
31
+ run: npm run lint
32
33
+ - name: Run Firefox extension validation
34
+ run: npm run test:firefox
0 commit comments