Skip to main content
Module

x/fastro/.github/workflows/ci.yml

Fast and simple web application framework for deno
Go to Latest
File
name: cion: [push, pull_request]jobs: build: runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 - uses: denolib/setup-deno@master with: deno-version: 1.6.2 - run: deno --version - run: deno lint --unstable - run: deno fmt --check - run: deno test -A - name: Release if: startsWith(github.ref, 'refs/tags/v') && github.repository == 'fastrojs/fastro' uses: actions/create-release@latest env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} with: tag_name: ${{ github.ref }} release_name: Release ${{ github.ref }}