Skip to content

Commit 78bfe88

Browse files
committed
GitHub Actions
1 parent f22eebf commit 78bfe88

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed

.github/workflows/main.yaml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
name: main
2+
on:
3+
push:
4+
branches: "*"
5+
tags: "*"
6+
pull_request:
7+
8+
jobs:
9+
test:
10+
runs-on: ubuntu-latest
11+
steps:
12+
- uses: actions/checkout@v4
13+
- uses: denoland/setup-deno@v2
14+
with:
15+
deno-version: v2.x
16+
- run: deno task test-all
17+
18+
# cSpell: ignore denoland

0 commit comments

Comments
 (0)