diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 5c5e1cdb25..0246bdaa39 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -19,9 +19,7 @@ jobs: cache: 'npm' - run: npm ci - run: npm run build - # v4 download seems to have some flakiness with the download of artifacts so pinning to v3 for now - # @see https://github.com/actions/download-artifact/issues/249 - - uses: actions/upload-artifact@v3 + - uses: actions/upload-artifact@v4 with: name: axe-core path: axe.js @@ -39,7 +37,7 @@ jobs: - uses: actions/setup-node@v4 with: node-version: ${{ matrix.node}} - - uses: actions/download-artifact@v3 + - uses: actions/download-artifact@v4 with: name: axe-core - run: npm run test:node