Skip to content

build(deps): bump denoland/setup-deno from 1.1.4 to 1.2.0 #28

build(deps): bump denoland/setup-deno from 1.1.4 to 1.2.0

build(deps): bump denoland/setup-deno from 1.1.4 to 1.2.0 #28

Workflow file for this run

name: Problem Matcher
on:
push: { branches: [main] }
pull_request: { branches: [main] }
workflow_dispatch:
jobs:
problem-matcher:
strategy:
fail-fast: false
matrix:
# we just need to check two different path separators
os: [ubuntu-latest, windows-latest]
name: Problem matcher on ${{ matrix.os }}
runs-on: ${{ matrix.os }}
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Deno
uses: ./
- name: Problem matcher
working-directory: test/problem-matcher
run: |
deno lint || true
deno lint --compact || true
deno test || true
deno check *.ts || true