Update docker.io/debian:bookworm-slim Docker digest to d365f49 #1015
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: CI | |
on: | |
push: | |
branches: ['trunk'] | |
pull_request: | |
permissions: | |
contents: read | |
jobs: | |
CI: | |
name: Lint, Typecheck & Test | |
runs-on: ubuntu-latest | |
env: | |
# renovate: datasource=github-releases depName=denoland/deno | |
DENO_VERSION: v2.1.4 | |
steps: | |
- name: Setup repo | |
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4 | |
- name: Setup Deno | |
uses: denoland/setup-deno@v1 | |
with: | |
deno-version: '${{env.DENO_VERSION}}' | |
- name: Run lint script | |
run: ./bin/lint |