chore: run build #1
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: Integration sandbox | |
on: | |
## integration test runs locally but is flakey in CI, skipping for now | |
# push: | |
# branches | |
# - main | |
# pull_request: | |
jobs: | |
main: | |
name: Build/test integration sandbox | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
with: | |
submodules: recursive | |
- name: Setup | |
uses: ./.github/actions/setup | |
- name: Install integration sandbox dependencies | |
working-directory: ./integration-sandbox | |
run: pnpm install | |
- name: Clean integration sandbox | |
working-directory: ./integration-sandbox | |
run: pnpm run clean | |
- name: Build integration sandbox | |
working-directory: ./integration-sandbox | |
run: pnpm run build | |
- name: Outdated files, run `pnpm run build` in `integration-sandbox` and commit them | |
uses: ./.github/actions/require-empty-diff | |
- name: Run tests | |
working-directory: ./integration-sandbox | |
run: pnpm test |