Skip to content

feat: add health

feat: add health #1687

Workflow file for this run

name: build
on:
push:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
permissions:
id-token: write
contents: write
packages: write
steps:
- name: Clone repository
uses: actions/checkout@v4
- uses: denoland/setup-deno@v2
with:
deno-version: 2.1.2
- name: Run tests
run: GITHUB_TOKEN=${{ secrets.GITHUB_TOKEN }} deno task test
- name: Generate report
run: deno task coverage
- name: Coveralls
uses: coverallsapp/github-action@v2
with:
path-to-lcov: ./cov.lcov
github-token: ${{ secrets.GITHUB_TOKEN }}
- name: Run Build
run: GITHUB_CLIENT_ID=${{ vars.GH_CLIENT_ID }} GITHUB_CLIENT_SECRET=${{ secrets.GH_CLIENT_SECRET }} deno task build
- name: Deploy to Deno Deploy
uses: denoland/deployctl@v1
with:
project: fastro
entrypoint: modules/app/main.ts