diff --git a/.github/workflows/test-gha.yaml b/.github/workflows/test-gha.yaml index fcca76a..da0cea6 100644 --- a/.github/workflows/test-gha.yaml +++ b/.github/workflows/test-gha.yaml @@ -30,11 +30,17 @@ jobs: ref: ${{ github.ref }} persist-credentials: false - - uses: actions/setup-node@v1 + - uses: actions/setup-node@v4 with: - node-version: 12 + node-version: 22 registry-url: 'https://registry.npmjs.org' + # Firefox and Edge might be missing on Mac CI images. + - name: 'Install Firefox & Edge on Mac' + timeout-minutes: 5 + if: matrix.os == 'macos-latest' + run: brew install --cask firefox microsoft-edge + - run: npm ci - run: node ./main.js