Skip to content

Commit 3bdba57

Browse files
authored
Merge pull request #3 from QAtestinc/testinc41-patch-1
Create deno.yml
2 parents ed6ee7c + 1a00d9c commit 3bdba57

File tree

1 file changed

+39
-0
lines changed

1 file changed

+39
-0
lines changed

.github/workflows/deno.yml

Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
# This workflow uses actions that are not certified by GitHub.
2+
# They are provided by a third-party and are governed by
3+
# separate terms of service, privacy policy, and support
4+
# documentation.
5+
6+
# This workflow will install Deno then run Deno lint and test.
7+
# For more information see: https://github.com/denoland/setup-deno
8+
9+
name: Deno
10+
11+
on:
12+
push:
13+
branches: [main]
14+
pull_request:
15+
branches: [main]
16+
17+
jobs:
18+
test:
19+
runs-on: ubuntu-latest
20+
21+
steps:
22+
- name: Setup repo
23+
uses: actions/checkout@v2
24+
25+
- name: Setup Deno
26+
# uses: denoland/setup-deno@v1
27+
uses: denoland/setup-deno@004814556e37c54a2f6e31384c9e18e9833173669
28+
with:
29+
deno-version: v1.x
30+
31+
# Uncomment this step to verify the use of 'deno fmt' on each commit.
32+
# - name: Verify formatting
33+
# run: deno fmt --check
34+
35+
- name: Run linter
36+
run: deno lint
37+
38+
- name: Run tests
39+
run: deno test -A --unstable

0 commit comments

Comments
 (0)