From d3370ecab1cd67bb44ceb99492fd0371d398fd11 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Trevor=20Mu=C3=B1oz?= Date: Thu, 18 Jul 2024 16:16:17 -0400 Subject: [PATCH] Give tests action the envvars --- .github/workflows/run-tests.yml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/.github/workflows/run-tests.yml b/.github/workflows/run-tests.yml index bc518b32cb..5c6cfd19b3 100644 --- a/.github/workflows/run-tests.yml +++ b/.github/workflows/run-tests.yml @@ -15,6 +15,14 @@ jobs: node-version: 20.x - name: Install dependencies run: npm ci + env: + AIRTABLE_TOKEN: ${{ secrets.AIRTABLE_TOKEN }} + AIRTABLE_PEOPLE_BASE_ID: appk2btw36qEO3vFo + AIRTABLE_RESEARCH_BASE_ID: appTv9J1zxqaNgBHi + AIRTABLE_EVENTS_BASE_ID: tbl6CURONRn8ML6le + AIRTABLE_POSTS_BASE_ID: appsY0VXF7pbv3mKR + AIRTABLE_MITH_BASE_ID: appMWsw8HKjjokBg2 + - name: Install Playwright Browsers run: npx playwright install --with-deps - name: Run Playwright tests