We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fbab7e8 commit dc06e34Copy full SHA for dc06e34
.github/workflows/test.yml
@@ -68,7 +68,12 @@ jobs:
68
mkdir -p ~/ssl && cd ~/ssl
69
wget -nc https://ftp.debian.org/debian/pool/main/o/openssl/libssl1.1_1.1.1w-0+deb11u1_amd64.deb
70
sudo dpkg -i libssl1.1_1.1.1w-0+deb11u1_amd64.deb
71
- - run: yarn --network-concurrency 1
+ - 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
77
- run: yarn --silent lint -- --max-warnings 0
78
- run: yarn --silent test:unit
79
- run: yarn --silent test:functional
0 commit comments