We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 10a2e40 commit a2f11f8Copy full SHA for a2f11f8
.github/workflows/ci.yml
@@ -20,6 +20,11 @@ jobs:
20
steps:
21
- uses: actions/checkout@v3
22
23
+ # This is necessary because GitHub Actions does not support IPv6 yet
24
+ # And if a user has `ipv6: true` set in their yaml config, it wouldn't work otherwise
25
+ # <https://github.com/actions/runner-images/issues/668#issuecomment-1872487355>
26
+ - name: Setup WARP
27
+ uses: fscarmen/warp-on-actions@v2
28
- name: Install Node - ${{ matrix.node-version }}
29
uses: actions/setup-node@v3
30
with:
0 commit comments