docs: fix typo and more simply #90
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 Tests | |
on: | |
push: | |
branches: | |
- main | |
- develop | |
pull_request: | |
branches: | |
- main | |
- develop | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Set up Deno v1.x | |
uses: denoland/setup-deno@v1 | |
with: | |
deno-version: v1.x | |
- name: Check format | |
run: deno fmt --check | |
- name: Check lint error | |
run: deno lint | |
- name: Test Module | |
run: deno test |