Skip to content

Commit

Permalink
chore: troubleshooting
Browse files Browse the repository at this point in the history
  • Loading branch information
stefan-guggisberg committed Oct 29, 2024
1 parent 5dcca36 commit 8e5138b
Showing 1 changed file with 12 additions and 1 deletion.
13 changes: 12 additions & 1 deletion .github/workflows/main.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,13 +9,24 @@ permissions:
env:
CI_BUILD_NUM: ${{ github.run_id }}
CI_BRANCH: ${{ github.ref_name }}
NODE_OPTIONS: --dns-result-order=ipv4first

jobs:
test:
name: Test
runs-on: ubuntu-latest
steps:
- name: Set NODE_OPTIONS
run: |
# Your logic to generate NODE_OPTIONS
NODE_OPTIONS="--dns-result-order=ipv4first"
echo "NODE_OPTIONS=${NODE_OPTIONS}" >> $GITHUB_ENV
- name: Check NODE_OPTIONS
run: |
echo "NODE_OPTIONS: $NODE_OPTIONS"
# Continue with your workflow steps
- uses: actions/checkout@v4
- name: Use Node.js 20.x
uses: actions/setup-node@v4
Expand Down

0 comments on commit 8e5138b

Please sign in to comment.