From 34a2590b054ee65b90add1c333f5c2c0361b73fe Mon Sep 17 00:00:00 2001 From: Michael Dawson Date: Sat, 19 Aug 2023 17:44:21 -0400 Subject: [PATCH] build: expand when we run internet tests Refs: https://github.com/nodejs/node/issues/49203 Changes slipped into v18.x regressed test/internet/test-dns-ipv6 as I assume the action did not run because no test under test/internet was changed. Add some of the common paths that include code that might introduce failures in the internet tests. Signed-off-by: Michael Dawson PR-URL: https://github.com/nodejs/node/pull/49218 Reviewed-By: Ruy Adorno Reviewed-By: Yagiz Nizipli Reviewed-By: Antoine du Hamel Reviewed-By: Moshe Atlow Reviewed-By: Luigi Pinca --- .github/workflows/test-internet.yml | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test-internet.yml b/.github/workflows/test-internet.yml index 1c3113ab6acdd0..dbed086da7056c 100644 --- a/.github/workflows/test-internet.yml +++ b/.github/workflows/test-internet.yml @@ -7,14 +7,22 @@ on: pull_request: types: [opened, synchronize, reopened, ready_for_review] - paths: [test/internet/**] + paths: + - test/internet/** + - internal/dns/** + - lib/dns.js + - lib/net.js push: branches: - main - canary - v[0-9]+.x-staging - v[0-9]+.x - paths: [test/internet/**] + paths: + - test/internet/** + - internal/dns/** + - lib/dns.js + - lib/net.js concurrency: group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}