Skip to content

feat: only hash assets #17

feat: only hash assets

feat: only hash assets #17

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Deno
uses: denoland/setup-deno@v2
with:
deno-version: v2.x
- name: Verify formatting
run: deno task fmt:check
- name: Run linter
run: deno task lint
- name: Run type check
run: deno task check
- name: Run tests
run: deno task test