Merge pull request #286 from OpenUp-LabTakizawa/Marukome0743-patch-1 #667
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: Bun CI | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
on: | |
push: | |
paths: | |
- "app/**" | |
- "public/**" | |
- "bun.lockb" | |
- "package.json" | |
- "yarn.lock" | |
- "*config.*" | |
pull_request: | |
paths: | |
- "app/**" | |
- "public/**" | |
- "bun.lockb" | |
- "package.json" | |
- "yarn.lock" | |
- "*config.*" | |
workflow_dispatch: | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Install bun | |
uses: oven-sh/setup-bun@v1 | |
- name: Install dependencies | |
run: bun i | |
- name: Test app | |
run: bun test |