Update '.gitea/workflows/deno.yml'
Some checks failed
Deno app build and testing / deno (push) Failing after 49s

This commit is contained in:
Mario Romero 2023-05-16 20:23:55 +00:00
parent b62007cd70
commit bfdff84c15

View File

@ -12,22 +12,20 @@ jobs:
timeout-minutes: 5
steps:
- name: Setup repo
- name: Checkout
uses: actions/checkout@v3
- name: Setup Deno
uses: https://github.com/denoland/setup-deno@v1
with:
deno-version: v1.x
- name: Update repository
run: apt update
- name: Verify formatting
run: deno fmt --check
- 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