Skip to content
This repository was archived by the owner on Jan 7, 2025. It is now read-only.

Commit f79d68a

Browse files
committed
👷 Use GitHub Actions
1 parent b135a94 commit f79d68a

File tree

1 file changed

+21
-0
lines changed

1 file changed

+21
-0
lines changed

.github/workflows/ci.yml

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
name: ci
2+
3+
on: [push, pull_request]
4+
5+
jobs:
6+
test:
7+
runs-on: ubuntu-latest
8+
steps:
9+
- uses: actions/checkout@master
10+
- uses: denoland/setup-deno@main
11+
with:
12+
deno-version: "1.12.2"
13+
- name: Run fmt
14+
run: |
15+
deno fmt --check
16+
- name: Run lint
17+
run: |
18+
deno lint
19+
- name: Run tests
20+
run: |
21+
deno test --allow-net=scrapbox.io

0 commit comments

Comments
 (0)