Skip to content

Merge pull request #68 from thefrontside/cl/make-embeddable #189

Merge pull request #68 from thefrontside/cl/make-embeddable

Merge pull request #68 from thefrontside/cl/make-embeddable #189

Workflow file for this run

# This workflow uses actions that are not certified by GitHub.
# They are provided by a third-party and are governed by
# separate terms of service, privacy policy, and support
# documentation.
# This workflow will install Deno then run Deno lint and test.
# For more information see: https://github.com/denoland/setup-deno
name: Verify
on:
push:
branches: v[0-9]
pull_request:
branches: v[0-9]
permissions:
contents: read
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: checkout
uses: actions/checkout@v3
- name: setup deno
uses: denoland/setup-deno@v2
with:
deno-version: v2.x
- name: format
run: deno fmt --check
- name: lint
run: deno lint
- name: test
run: deno task test