harmony/.github/workflows/deno.yml

36 lines
881 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:
2020-12-02 12:29:52 +00:00
deno: ['v1.x', 'nightly']
2020-11-06 16:48:18 +00:00
steps:
- name: Setup repo
uses: actions/checkout@v2
- name: Setup Deno
2020-11-25 11:55:57 +00:00
uses: denolib/setup-deno@v2.3.0
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