Revert "chore(deps): update dependency https://deno.land/x/lume to v2… #360
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: Maintain code quality | |
env: | |
# tool versions | |
# renovate: datasource=github-releases depName=denoland/deno | |
DENO_VERSION: v1.45.2 | |
on: | |
push: | |
branches: ["**"] | |
pull_request: | |
permissions: {} | |
jobs: | |
check: | |
name: Check | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 | |
- name: Setup Deno | |
uses: denoland/setup-deno@ba9dcf3bc3696623d1add6a2f5181ee1b5143de5 # v1.3.0 | |
with: | |
deno-version: ${{ env.DENO_VERSION }} | |
- name: Check lint | |
run: deno lint | |
- name: Check format | |
run: deno fmt --check |