画像表示バグ修正 #146
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: | |
pull_request: | |
workflow_dispatch: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
if: contains(github.event.head_commit.message, '[skip ci]') == false | |
steps: | |
- name: 📥 Checkout repository | |
uses: actions/checkout@v3 | |
- name: 🔨 Prepare Bun environment | |
uses: oven-sh/setup-bun@v2 | |
with: | |
bun-version: latest | |
- run: curl -sfS https://dotenvx.sh/install.sh | sh | |
- name: 🎉 Install project dependencies | |
run: bun i | |
- name: 😺 Check | |
run: bun run test |