This repository has been archived by the owner on Sep 8, 2024. It is now read-only.
保存するAPIを変更 (#58) #162
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: 🧪 Test | |
on: | |
push: | |
branches: | |
- main | |
paths: | |
- "**.js" | |
- "**.ts" | |
- "**.tsx" | |
- deno.lock | |
- .github/workflows/test.yml | |
pull_request: | |
paths: | |
- "**.js" | |
- "**.ts" | |
- "**.tsx" | |
- deno.lock | |
- .github/workflows/test.yml | |
jobs: | |
Deno: | |
runs-on: Ubuntu-Latest | |
steps: | |
- name: 🚚 Checkout Repository | |
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 | |
- name: 🦕 Setup Deno | |
uses: denoland/setup-deno@fa660b328d065f7683e7303976bd81e2d58e98ae # v1.4.1 | |
with: | |
deno-version: v1.x | |
- name: 🧪 Run Tests | |
run: deno task test | |
- name: 🧹 Lint Check | |
run: deno lint | |
- name: 📚 Lint the JSDoc | |
run: deno doc --lint ./src | |
- name: 📝 Format Check | |
run: deno fmt --check | |
- name: 🔍 Type Check | |
run: deno check ./src |