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