Skip to content

Commit c2b7a5b

Browse files
andrewbreyc4spar
authored andcommitted
ci(actions): add testing step to github action
1 parent 513a4da commit c2b7a5b

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

.github/workflows/lint.yaml renamed to .github/workflows/lint-and-test.yaml

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1-
name: Lint
1+
name: Lint and Test
22

33
on: [push, pull_request]
44

55
jobs:
6-
lint:
7-
name: Lint source
6+
lint-and-test:
7+
name: Lint and test source
88
runs-on: ubuntu-latest
99
steps:
1010
- name: Setup repo
@@ -20,3 +20,6 @@ jobs:
2020

2121
- name: Run linter
2222
run: deno lint --unstable
23+
24+
- name: Run tests
25+
run: deno test --unstable

0 commit comments

Comments
 (0)