diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index 44ed6284e0..593a67183b 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -28,6 +28,10 @@ jobs: restore-keys: | ${{ runner.OS }}-node- ${{ runner.OS }}- + - name: Reconfigure git to use HTTP authentication + run: > + git config --global url."https://github.com/".insteadOf + ssh://git@github.com/ - name: Install dependencies run: npm ci - name: Lint diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index e4b0a40766..76cea137c2 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -23,6 +23,10 @@ jobs: restore-keys: | ${{ runner.OS }}-node- ${{ runner.OS }}- + - name: Reconfigure git to use HTTP authentication + run: > + git config --global url."https://github.com/".insteadOf + ssh://git@github.com/ - name: Install dependencies run: npm ci - name: Test client @@ -52,6 +56,10 @@ jobs: restore-keys: | ${{ runner.OS }}-node- ${{ runner.OS }}- + - name: Reconfigure git to use HTTP authentication + run: > + git config --global url."https://github.com/".insteadOf + ssh://git@github.com/ - name: Install dependencies run: npm ci - name: Test server