Skip to content

Commit 95ac6de

Browse files
committed
add more ci
1 parent 21407e6 commit 95ac6de

File tree

1 file changed

+24
-0
lines changed

1 file changed

+24
-0
lines changed

.github/workflows/test.yml

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
name: Build
2+
3+
on:
4+
push:
5+
branches: ["master"]
6+
7+
jobs:
8+
build:
9+
runs-on: ubuntu-latest
10+
steps:
11+
- name: Checkout
12+
uses: actions/checkout@v3
13+
- name: Setup Deno
14+
uses: denoland/setup-deno@v2
15+
with:
16+
deno-version: v2.x
17+
- name: Build Dictionary
18+
run: deno task build-dictionary
19+
- name: Check formatting
20+
run: deno fmt --check
21+
- name: Lint
22+
run: deno lint
23+
- name: Test
24+
run: deno test

0 commit comments

Comments
 (0)