Release/1.5.0 #75
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: Run tests | ||
on: | ||
pull_request: | ||
branches: [master] | ||
jobs: | ||
tests: | ||
runs-on: ubuntu-latest | ||
services: | ||
bit: | ||
image: sjdonado/bit | ||
env_file: .env.test | ||
Check failure on line 13 in .github/workflows/tests.yml GitHub Actions / Run testsInvalid workflow file
|
||
ports: | ||
- 4000:4000 | ||
options: >- | ||
--volume sqlite_data:/app/sqlite | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: oven-sh/setup-bun@v1 | ||
- name: Install dependencies | ||
run: bun install | ||
- name: Run integration tests | ||
run: bun run test | ||
env_file: .env.test | ||
volumes: | ||
sqlite_data: |