Update to deno v1.45.0 #22
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, pull_request] | |
jobs: | |
ci: | |
runs-on: ubuntu-latest | |
steps: | |
- name: clone repository | |
uses: actions/checkout@v4 | |
- name: install deno | |
uses: denoland/setup-deno@v1 | |
with: | |
deno-version: 1.X | |
- name: check lockfile | |
run: deno task deps:check | |
- name: check format | |
run: deno fmt --check | |
- name: check linting | |
run: deno lint |