👍 ゲーム情報を圧縮してからKVに保存するように変更 #822
Workflow file for this run
This file contains hidden or 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: | |
workflow_dispatch: | |
push: | |
branches: | |
- main | |
pull_request: | |
jobs: | |
check: | |
name: format & lint check | |
uses: kakomimasu/kakomimasu.github.io/.github/workflows/dfl-check.yml@main | |
test: | |
needs: check | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: denoland/setup-deno@v1 | |
with: | |
deno-version: v1.40.2 | |
- name: Run test | |
run: | | |
deno task test | |
- name: Create coverage | |
run: | | |
deno task coverage | |
- name: Codecov | |
uses: codecov/codecov-action@v2 | |
with: | |
files: ./coverage/coverage.lcov |