-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathjustfile
More file actions
48 lines (39 loc) · 812 Bytes
/
justfile
File metadata and controls
48 lines (39 loc) · 812 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
# List available recipes by default.
default:
@just --list
# Run Jest tests.
[group('quality')]
test:
npm run test
# Run web-ext lint checks.
[group('quality')]
lint:
npm run lint
# Build extension package.
[group('release')]
build:
npm run build
# Sync package version into manifest.
[group('release')]
sync-version:
npm run sync-version
# Run extension in default browser target.
[group('dev')]
run:
npm run run
# Run extension in Firefox profile.
[group('dev')]
start-firefox:
npm run start-firefox
# Run extension in Chromium profile.
[group('dev')]
start-chromium:
npm run start-chromium
# Run the core validation pipeline.
[group('quality')]
check:
npm run lint && npm run test && npm run build
# Run all QA checks for CI.
[group('quality')]
ci:
just check