-
-
Notifications
You must be signed in to change notification settings - Fork 22
28 lines (25 loc) · 721 Bytes
/
ci.yml
File metadata and controls
28 lines (25 loc) · 721 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
# This is a basic workflow to help you get started with Actions
name: CI
# Controls when the action will run. Triggers the workflow on push or pull request
# events but only for the master branch
on:
push:
branches: [ master, dev ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, windows-latest]
deno: [1.23.3]
name: Trex cli test
steps:
- uses: actions/checkout@master
- name: Setup Deno
uses: denoland/setup-deno@main
with:
deno-version: ${{ matrix.deno }}
- run: cd ./test && deno test -A --unstable --import-map=../import_map.json