Skip to content

Add these changes from #2072 and #2074 #1204

Add these changes from #2072 and #2074

Add these changes from #2072 and #2074 #1204

Workflow file for this run

name: "DB:Snowflake"
on:
pull_request:
workflow_call:
secrets:
SNOWFLAKE_CONNECTION:
required: true
jobs:
test-snowflake:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.x]
steps:
- uses: actions/checkout@v4
with:
submodules: 'true'
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- name: npm install, build, and test
run: |
npm ci --loglevel error
npm run build
./scripts/gen-snowflake-auth.sh
npx jest --reporters jest-silent-reporter --reporters summary --config jest.snowflake.config.ts
env:
CI: true
MALLOY_DATABASES: snowflake
SNOWFLAKE_CONNECTION: ${{ secrets.SNOWFLAKE_CONNECTION }}