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 faef782 commit 220b835Copy full SHA for 220b835
.github/workflows/browser-extension.yml
@@ -0,0 +1,23 @@
1
+on:
2
+ push:
3
+ paths:
4
+ - 'browser-extension/**'
5
+ pull_request:
6
7
8
+jobs:
9
+ lint-and-build:
10
+ runs-on: ubuntu-latest
11
+ steps:
12
+ - uses: actions/checkout@v5
13
+ - uses: actions/setup-node@v5
14
+ with:
15
+ node-version-file: '.nvmrc'
16
+ cache: 'npm'
17
+ cache-dependency-path: browser-extension/package-lock.json
18
+ - run: npm ci
19
+ working-directory: browser-extension
20
+ - run: npm run biome
21
22
+ - run: npm run compile
23
0 commit comments