From b9190a08becf7939a811a5458e71725d9ab2f318 Mon Sep 17 00:00:00 2001 From: Theo Ephraim Date: Tue, 3 Sep 2024 13:29:19 -0700 Subject: [PATCH] wiring up github action to dmno --- .github/workflows/ci.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index c5ccb3c..8a78532 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -31,7 +31,7 @@ jobs: - uses: pnpm/action-setup@v4 name: Install pnpm with: - version: 8 + version: 9 run_install: false - name: Get pnpm store directory @@ -54,10 +54,12 @@ jobs: run: pnpm run lint --format junit -o reports/junit/js-lint-results.xml - name: Test - run: pnpm run test --ci --runInBand --reporters=default --reporters=jest-junit --coverage + run: pnpm run test env: + CI: 1 NODE_ENV: ci JEST_JUNIT_OUTPUT: "reports/junit/js-test-results.xml" + DMNO_VAULT_KEY: ${{ secrets.DMNO_VAULT_KEY }} - uses: actions/upload-artifact@v4 with: