-
Notifications
You must be signed in to change notification settings - Fork 0
36 lines (29 loc) · 771 Bytes
/
ci.yml
File metadata and controls
36 lines (29 loc) · 771 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
name: CI
on: [push]
jobs:
dkill-test:
runs-on: ${{ matrix.os }}
timeout-minutes: 3
strategy:
matrix:
os: [
ubuntu-latest,
windows-latest,
macos-latest,
]
steps:
- uses: denoland/setup-deno@v2
with:
deno-version: v2.0.x
- run: echo "🐧 This job is now running on a ${{ runner.os }} server hosted by GitHub!"
- name: Check out repository code
uses: actions/checkout@v4
- name: lint
run: deno lint
- name: fmt
run: deno fmt --check
- name: Check
run: deno check ./mod.ts
- name: Run Test files in the repository
run: deno test -A
- run: echo "🍏 This job's status is ${{ job.status }}."