Skip to content

Commit 220b835

Browse files
author
ntwigg
committed
Add CI.
1 parent faef782 commit 220b835

File tree

1 file changed

+23
-0
lines changed

1 file changed

+23
-0
lines changed
Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
on:
2+
push:
3+
paths:
4+
- 'browser-extension/**'
5+
pull_request:
6+
paths:
7+
- 'browser-extension/**'
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+
working-directory: browser-extension
22+
- run: npm run compile
23+
working-directory: browser-extension

0 commit comments

Comments
 (0)