From 74ce669fe493fe8ac8edf1fdf27b10f3b2c4dcaa Mon Sep 17 00:00:00 2001 From: Peter Stuifzand Date: Sun, 1 May 2022 00:34:13 +0200 Subject: [PATCH] Problem: workflow has error in npm ci Solution: fix urls --- .github/workflows/main.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index ca8d6bf..c12b283 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -27,6 +27,9 @@ jobs: # Steps represent a sequence of tasks that will be executed as part of the job steps: + - name: Fix up git URLs + run: echo -e '[url "https://github.com/"]\n insteadOf = "git://github.com/"' >> ~/.gitconfig + # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it - uses: actions/checkout@v2