Merge branch 'main' into config-cache #283
Workflow file for this run
This file contains hidden or 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: VT Testing | |
on: | |
- push | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: denoland/setup-deno@v2 | |
with: | |
deno-version: v2.x | |
- name: Run deno test script | |
env: | |
VAL_TOWN_API_KEY: ${{ secrets.VAL_TOWN_API_KEY }} | |
run: deno task test | |
- name: Run deno lint check | |
run: deno task check | |
- name: Run deno format check | |
run: deno task fmt:check |