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

This commit is contained in:
Mario Romero 2023-05-17 05:11:38 +00:00
parent 033a0c0622
commit 23ed744650

View File

@ -11,13 +11,9 @@ on:
branches: [ main ]
jobs:
defaults:
run:
working-directory: ./src
deno:
runs-on: ubuntu-latest
timeout-minutes: 5
working-dir: inherit
steps:
- name: Checkout
@ -32,10 +28,13 @@ jobs:
source $HOME/.bashrc
- name: Run linter
working-directory: ./src
run: deno lint
- name: Run tests
working-directory: ./src
run: deno task test
- name: Run type check
working-directory: ./src
run: deno check *.ts && deno check **/*.ts