From 8a60926371a9e121e7c9b8a8c9fe479a01570426 Mon Sep 17 00:00:00 2001 From: Philip Tellis Date: Thu, 15 Feb 2024 10:38:25 -0500 Subject: [PATCH] Run updatedb before tests so that we use the correct data file for testing --- .github/workflows/test.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 46d7a9f5..2f8b8a09 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -13,5 +13,8 @@ jobs: uses: actions/setup-node@v1 with: node-version: '12.x' + env: + LICENSE_KEY: ${{ secrets.MAXMIND_LICENSE_KEY }} - run: npm install + - run: npm run updatedb - run: npm test