(auto merged) chore(deps): bump denoland/deno from 2.1.2 to 2.1.3 #445
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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/checkout@v4.2.2 | |
- name: Setup Deno | |
uses: denoland/setup-deno@v2.0.1 | |
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 |