Release v17.3.11 #139
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: remove tools | |
run: sed -i '/^\s*sqlite\s*=\s*".*"/d' .mise.toml | |
- name: Install mise | |
uses: jdx/mise-action@v2 | |
with: | |
install: true | |
cache: true | |
- name: install deps | |
run: deno install --node-modules-dir | |
- name: check format | |
run: mise run check:format | |
- name: check linting | |
run: mise run check:lint | |
- name: run tests | |
run: deno task test |