Skip to main content
Module

x/fastro/.github/workflows/merge.yml

Full Stack Framework for Deno, TypeScript, Preact JS and Tailwind CSS
Go to Latest
File
name: mergeon: pull_request: branches: - mainjobs: 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@v1 with: deno-version: vx.x.x
- run: deno lint --unstable http - run: deno lint --unstable examples - name: Run tests run: 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 }}