Skip to content

ci: add lint and build flow #12

ci: add lint and build flow

ci: add lint and build flow #12

Workflow file for this run

name: Lint and Build
on:
pull_request:
branches:
- main
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Set up Deno
uses: denoland/setup-deno@v1
with:
deno-version: v2.0
- name: Install
run: deno install
- name: Lint
run: deno lint ./src/*.ts -- --reload
build:
runs-on: ubuntu-latest
needs: lint
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Set up Deno
uses: denoland/setup-deno@v1
with:
deno-version: v2.0
- name: Compile Deno Project
run: |
deno compile --output plankapi ./src/index.ts