1159cl/.gitea/workflows/deno.yml
Mario Romero 62285acefb
Some checks failed
Deno app build and testing / deno (push) Failing after 19s
Update '.gitea/workflows/deno.yml'
2023-05-16 20:28:14 +00:00

29 lines
529 B
YAML

name: Deno app build and testing
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
deno:
runs-on: ubuntu-latest
timeout-minutes: 5
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Install deno
run: curl -fsSL https://deno.land/x/install/install.sh | sh
- name: Run linter
run: deno lint
- name: Run tests
run: deno task test
- name: Run type check
run: deno check *.ts && deno check **/*.ts