From f55708eec093d4a024938f93d169713a9e0476b9 Mon Sep 17 00:00:00 2001 From: Matt Andreko Date: Fri, 3 Oct 2025 09:11:07 -0400 Subject: [PATCH] Cleanup of workflow files --- .github/workflows/ci.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index fd509b3..241fbe5 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -22,13 +22,18 @@ jobs: steps: - name: Checkout Repo uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 + with: + persist-credentials: false + - name: Use Node.js ${{ matrix.node-version }} uses: actions/setup-node@39370e3970a6d050c480ffad4ff0ed4d3fdee5af # v4.1.0 with: node-version: ${{ matrix.node-version }} cache: 'npm' + - name: NPM CI run: npm ci + - name: NPM Build run: npm run build --if-present