docs: add link to user flow diagram #82
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
name: Deno | |
on: | |
push: | |
branches: ["main"] | |
pull_request: | |
branches: ["main"] | |
permissions: | |
contents: read | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Setup repo | |
uses: actions/checkout@v3 | |
- name: Setup Deno | |
# uses: denoland/setup-deno@v1 | |
uses: denoland/setup-deno@004814556e37c54a2f6e31384c9e18e983317366 | |
with: | |
deno-version: v1.x | |
# Do not run linter for now | |
#- name: Run linter | |
# run: deno lint | |
- name: Run tests | |
run: deno test -A --unstable |