harmony/.github/workflows/deno.yml

36 lines
879 B
YAML
Raw Normal View History

2020-11-06 16:48:18 +00:00
# This workflow uses actions that are not certified by GitHub.
# They are provided by a third-party and are governed by
# separate terms of service, privacy policy, and support
# documentation.
# This workflow will install Deno and run tests across stable and nightly builds on Windows, Ubuntu and macOS.
# For more information see: https://github.com/denolib/setup-deno
2020-11-06 16:50:46 +00:00
name: Run in Deno
2020-11-06 16:48:18 +00:00
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
test:
2020-11-30 11:13:13 +00:00
runs-on: ubuntu-latest
2020-11-06 16:48:18 +00:00
strategy:
matrix:
2021-04-11 12:10:14 +00:00
deno: ['v1.x', 'canary']
2020-11-06 16:48:18 +00:00
steps:
- name: Setup repo
uses: actions/checkout@v2
- name: Setup Deno
2021-04-11 12:04:23 +00:00
uses: denoland/setup-deno@main
2020-11-06 16:48:18 +00:00
with:
deno-version: ${{ matrix.deno }} # tests across multiple Deno versions
- name: Run mod.ts to test deeper
run: deno run --allow-net mod.ts