🎨 リンクの判定と表示方法を変更 #19
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
name: ci | |
on: [push, pull_request] | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@master | |
- uses: denoland/setup-deno@main | |
with: | |
deno-version: "1.39.1" | |
- name: Run fmt | |
run: | | |
deno fmt --check | |
- name: Run lint | |
run: | | |
deno lint | |
- name: Run tests | |
run: | | |
deno test -A --unstable ./tests |