Skip to main content
Module

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

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