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 c39bb9d commit 1b6d6d3Copy full SHA for 1b6d6d3
.github/workflows/build-browser.yml
@@ -0,0 +1,36 @@
1
+name: Build Browser Extension
2
+
3
+on:
4
+ push:
5
+ branches:
6
+ - '**'
7
8
+jobs:
9
+ build:
10
+ runs-on: ubuntu-latest
11
12
+ steps:
13
+ - name: Checkout Code
14
+ uses: actions/checkout@v4
15
16
+ - name: Setup Node.js
17
+ uses: actions/setup-node@v4
18
+ with:
19
+ node-version: '20'
20
21
+ - name: Setup pnpm
22
+ uses: pnpm/action-setup@v2
23
24
+ version: 8
25
26
+ - name: Build
27
+ run: |
28
+ cd activate_browser
29
+ pnpm i
30
+ pnpm build
31
32
+ - name: Upload Artifact
33
+ uses: actions/upload-artifact@v4
34
35
+ name: activate-browser
36
+ path: activate_browser/build/chrome-mv3-prod
0 commit comments