Skip to content

Commit dc06e34

Browse files
update workflow for ssh to https
1 parent fbab7e8 commit dc06e34

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

.github/workflows/test.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,12 @@ jobs:
6868
mkdir -p ~/ssl && cd ~/ssl
6969
wget -nc https://ftp.debian.org/debian/pool/main/o/openssl/libssl1.1_1.1.1w-0+deb11u1_amd64.deb
7070
sudo dpkg -i libssl1.1_1.1.1w-0+deb11u1_amd64.deb
71-
- run: yarn --network-concurrency 1
71+
- name: Configure Git for HTTPS
72+
run: |
73+
git config --global url."https://github.com/".insteadOf "ssh://[email protected]/"
74+
git config --global url."https://github.com/".insteadOf "[email protected]:"
75+
- name: Install dependencies
76+
run: yarn install --network-concurrency 1
7277
- run: yarn --silent lint -- --max-warnings 0
7378
- run: yarn --silent test:unit
7479
- run: yarn --silent test:functional

0 commit comments

Comments
 (0)