Feat/kysely/v1 #8
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: Pull Request | |
on: pull_request | |
jobs: | |
actionlint: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- run: | | |
echo "::add-matcher::.github/actionlint-matcher.json" | |
shell: bash | |
- uses: docker://rhysd/actionlint:1.6.25 | |
with: | |
args: -color | |
test: | |
runs-on: ubuntu-latest | |
env: | |
DOTENV_PRIVATE_KEY: ${{ secrets.DOTENV_PRIVATE_KEY }} | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version-file: ".nvmrc" | |
- uses: oven-sh/setup-bun@v2 | |
with: | |
bun-version-file: ".bun-version" | |
- run: bun install --frozen-lockfile | |
- run: bun run seed:up | |
- run: bun start | |
- run: bun run wait-for-startup | |
- run: bun test | |
- run: | | |
bun run logs:app | |
bun stop | |
if: always() |