Skip to content

Merge branch 'main' into config-cache #283

Merge branch 'main' into config-cache

Merge branch 'main' into config-cache #283

Workflow file for this run

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