Skip to content

Commit b884561

Browse files
committed
fix: update workflow
1 parent 7e8d1f7 commit b884561

File tree

3 files changed

+209
-19
lines changed

3 files changed

+209
-19
lines changed

.github/workflows/deno.yml

Lines changed: 3 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,9 @@ name: Deno
1010

1111
on:
1212
push:
13-
branches: ["main"]
13+
branches: ["main", "staging"]
1414
pull_request:
15-
branches: ["main"]
15+
branches: ["main", "staging"]
1616

1717
permissions:
1818
contents: read
@@ -34,20 +34,5 @@ jobs:
3434
- name: Verify formatting
3535
run: deno fmt --check
3636

37-
- name: Run linter
38-
run: deno lint
39-
4037
- name: Run tests
41-
run: deno test -A
42-
43-
- name: Typecheck background
44-
run: deno check source/background.ts
45-
46-
- name: Typecheck content_script
47-
run: deno check source/content_script.ts
48-
49-
- name: Typecheck options
50-
run: deno check source/options.tsx
51-
52-
- name: Typecheck popup
53-
run: deno check source/popup.tsx
38+
run: deno task test:all

0 commit comments

Comments
 (0)