1159cl/.gitea/workflows/deno.yml
Mario Romero bfdff84c15
Some checks failed
Deno app build and testing / deno (push) Failing after 49s
Update '.gitea/workflows/deno.yml'
2023-05-16 20:23:55 +00:00

32 lines
577 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: Update repository
run: apt update
- name: Install packages
run: apt install -y build-essential cmake wget
- name: Run linter
run: deno lint
- name: Run tests
run: deno task test
- name: Run type check
run: deno check *.ts && deno check **/*.ts