update deno config for capat with 1.36.x (and earlier?) #172
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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@v1 | |
with: | |
deno-version: v1.x | |
- name: format | |
run: deno fmt --check | |
- name: lint | |
run: deno lint | |
- name: test | |
run: | | |
deno task test | |
cd www && deno task test |