fix: ipv6 addresses parsing #172
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
on: [push, pull_request] | |
env: | |
SAUCE_USERNAME: ${{ secrets.SAUCE_USERNAME }} | |
SAUCE_ACCESS_KEY: ${{ secrets.SAUCE_ACCESS_KEY }} | |
permissions: | |
contents: read # to fetch code (actions/checkout) | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
include: | |
- node-version: 14.x | |
- node-version: 16.x | |
- node-version: 18.x | |
steps: | |
- uses: actions/checkout@v3 | |
# This is necessary because GitHub Actions does not support IPv6 yet | |
# And if a user has `ipv6: true` set in their yaml config, it wouldn't work otherwise | |
# <https://github.com/actions/runner-images/issues/668#issuecomment-1872487355> | |
- name: Setup WARP | |
uses: fscarmen/[email protected] | |
- name: Install Node - ${{ matrix.node-version }} | |
uses: actions/setup-node@v3 | |
with: | |
node-version: ${{ matrix.node-version }} | |
# - name: Cache node modules | |
# uses: actions/cache@v3 | |
# env: | |
# cache-name: cache-node-modules | |
# with: | |
# # npm cache files are stored in `~/.npm` on Linux/macOS | |
# path: ~/.npm | |
# key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ hashFiles('**/yarn.lock') }} | |
- name: Install dependencies | |
run: npm install | |
- name: Build | |
run: npm run build | |
- name: Test On Node ${{ matrix.node-version }} | |
env: | |
BROWSER: ${{ matrix.test-on-brower }} | |
HTTP2_TEST_DISABLED: ${{ matrix.http2-test-disabled }} | |
OLD_NODE_TEST: ${{ matrix.test-on-old-node }} | |
run: | | |
if [ "$OLD_NODE_TEST" = "1" ]; then | |
make test | |
else | |
npm run lint | |
make test | |
fi | |
- name: Coverage On Node ${{ matrix.node-version }} | |
run: | |
npm run coverage | |
- name: Upload coverage to Codecov | |
uses: codecov/codecov-action@v3 |