Skip to main content
Module

x/cliffy/.github/workflows/test-nightly.yml

Command line framework for deno 🦕 Including Commandline-Interfaces, Prompts, CLI-Table, Arguments Parser and more...
Extremely Popular
Go to Latest
File
name: Nightly Test
on: schedule: - cron: 0 0 * * *
jobs:
nightly: name: Deno Nightly runs-on: ${{ matrix.os }} strategy: fail-fast: false matrix: os: [macOS-latest, windows-latest, ubuntu-latest] deno_version: [ canary ] steps: - name: Setup repo uses: actions/checkout@v2
- name: Setup Deno uses: denoland/setup-deno@v1 with: deno-version: ${{ matrix.deno_version }}
- name: Run tests run: deno test --allow-all --unstable --location https://cliffy.io