-
-
Notifications
You must be signed in to change notification settings - Fork 28
29 lines (27 loc) · 635 Bytes
/
deno.yml
File metadata and controls
29 lines (27 loc) · 635 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
name: deno
on:
push:
paths-ignore:
- 'docs/**'
- '*.md'
pull_request:
paths-ignore:
- 'docs/**'
- '*.md'
jobs:
test:
name: Test on deno ${{ matrix.deno }} and ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
deno: [ '2.x' ]
# os: [ubuntu-latest, windows-latest, macOS-latest]
os: [ubuntu-latest]
steps:
- uses: actions/checkout@v2
- name: Setup Deno
uses: denolib/setup-deno@master
with:
deno-version: ${{ matrix.deno }}
- run: deno --version
- run: deno test --allow-net test/deno/*.js