1159cl/.gitea/workflows/deno.yml
Workflow config file is invalid. Please check your config file: yaml: unmarshal errors: line 20: cannot unmarshal !!seq into string

32 lines
748 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: Install deno (aarch64)
run:
- curl -s https://gist.githubusercontent.com/LukeChannings/09d53f5c364391042186518c8598b85e/raw/ac8cd8c675b985edd4b3e16df63ffef14d1f0e24/deno_install.sh | sh
- export DENO_INSTALL="/root/.deno"
- export PATH="$DENO_INSTALL/bin:$PATH"
- name: Run linter
run: deno lint
- name: Run tests
run: deno task test
- name: Run type check
run: deno check *.ts && deno check **/*.ts