Skip to content

feat: flight SQL sdk #51

feat: flight SQL sdk

feat: flight SQL sdk #51

name: Integration tests
on:
push:
branches: ["main"]
pull_request:
env:
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
- uses: actions/cache@v4
name: Setup pnpm cache
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: Test
run: cd tests/c1-integration && pnpm run test