e2e #117
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: e2e | |
on: | |
schedule: | |
- cron: "30 01 * * *" | |
push: | |
branches: ['*'] | |
pull_request: | |
types: [opened, synchronize] | |
jobs: | |
e2e-tests: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Setup repository | |
uses: actions/checkout@v4 | |
- name: install bun | |
uses: oven-sh/setup-bun@v2 | |
- name: install deps | |
run: bun install | |
- name: e2e tests | |
# Note: will drive docker from within the bun test suite | |
run: bun test |