Skip to content

Merge pull request #106 from ucpr/dependabot/github_actions/denoland/… #413

Merge pull request #106 from ucpr/dependabot/github_actions/denoland/…

Merge pull request #106 from ucpr/dependabot/github_actions/denoland/… #413

Workflow file for this run

name: Deno CI
on:
push:
pull_request:
jobs:
test:
strategy:
matrix:
os: [ubuntu-latest, macos-latest]
version: [vx.x.x]
runs-on: ${{ matrix.os }}
timeout-minutes: 3
steps:
- name: Checkout repo
uses: actions/[email protected]
- name: Setup Deno
uses: denoland/[email protected]
with:
deno-version: ${{ matrix.version }}
- name: Check format
working-directory: ./cli
run: deno fmt --check
- name: Check lint
working-directory: ./cli
run: deno lint
- name: Run
run: make logo