Update internal-issues-only.md (#83) #145
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 will install Deno then run `deno lint` and `deno test`. | |
# For more information see: https://github.com/denoland/setup-deno | |
name: Deno | |
on: | |
push: | |
branches: | |
- main | |
- test-ci/** | |
tags: | |
- v** | |
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@0df5d9c641efdff149993c321fc27c11c5df8623 # v1.1.3 | |
with: | |
deno-version: v1.x | |
# Uncomment this step to verify the use of 'deno fmt' | |
# - name: Verify formatting | |
# run: deno fmt --check | |
# | |
# Uncomment this step to run the linter | |
# - name: Run linter | |
# run: deno lint | |
- name: Run tests | |
run: deno test -A ./src/test |