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 timeout-minutes: 5
steps: steps:
- name: Setup repo - name: Checkout
uses: actions/checkout@v3 uses: actions/checkout@v3
- name: Setup Deno - name: Update repository
uses: https://github.com/denoland/setup-deno@v1 run: apt update
with:
deno-version: v1.x
- name: Verify formatting - name: Install packages
run: deno fmt --check run: apt install -y build-essential cmake wget
- name: Run linter - name: Run linter
run: deno lint run: deno lint
- name: Run tests - name: Run tests
run: deno task test run: deno task test
- name: Run type check - name: Run type check
run: deno check *.ts && deno check **/*.ts run: deno check *.ts && deno check **/*.ts