Stream client classes #42
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 tests | |
on: | |
push: | |
branches: ["main"] | |
pull_request: | |
env: | |
C1_REGISTRY: "public.ecr.aws/r5b3e0r5/3box/ceramic-one" | |
C1_VERSION: "0.37.0" | |
CI: true | |
jobs: | |
test: | |
name: Run integration tests | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Setup node | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 22 | |
- name: Install pnpm | |
id: pnpm-install | |
uses: pnpm/action-setup@v3 | |
with: | |
version: 9.8.0 | |
run_install: false | |
- name: Get pnpm store directory | |
id: pnpm-cache | |
shell: bash | |
run: | | |
echo "STORE_PATH=$(pnpm store path)" >> $GITHUB_OUTPUT | |
- name: Setup pnpm cache | |
uses: actions/cache@v4 | |
with: | |
path: ${{ steps.pnpm-cache.outputs.STORE_PATH }} | |
key: pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }} | |
restore-keys: pnpm-store | |
- name: Install dependencies and build | |
run: pnpm install --frozen-lockfile | |
- name: Restore C1 Docker image if it exists | |
id: cache-docker-c1 | |
uses: actions/cache@v4 | |
with: | |
path: ci/cache/docker/c1 | |
key: cache-docker-c1-${{ env.C1_VERSION }} | |
- name: Update C1 Docker image if cache miss | |
if: steps.cache-docker-c1.outputs.cache-hit != 'true' | |
run: docker pull ${{ env.C1_REGISTRY }}:${{ env.C1_VERSION }} && mkdir -p ci/cache/docker/c1 && docker image save ${{ env.C1_REGISTRY }}:${{ env.C1_VERSION }} --output ./ci/cache/docker/c1/${{ env.C1_VERSION }}.tar | |
- name: Use C1 Docker image if cache hit | |
if: steps.cache-docker-c1.outputs.cache-hit == 'true' | |
run: docker image load --input ./ci/cache/docker/c1/${{ env.C1_VERSION }}.tar | |
- name: Test | |
run: cd tests/c1-integration && pnpm run test |