summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRich Trott <rtrott@gmail.com>2021-09-12 08:22:40 -0700
committerBeth Griggs <bgriggs@redhat.com>2021-09-22 00:26:58 +0100
commitc804d070a625e2979b3556c3f3e9aeb5f4f910cf (patch)
tree9e0c329eea39b04dd8e23cb95d7c7b38e1e6485f
parent4aa2610252d55ec1bc583e96164fab3b2e17b44e (diff)
downloadnode-new-c804d070a625e2979b3556c3f3e9aeb5f4f910cf.tar.gz
build: add daily/on-demand internet test workflow
PR-URL: https://github.com/nodejs/node/pull/40086 Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Michaƫl Zasso <targos@protonmail.com>
-rw-r--r--.github/workflows/test-internet.yml26
1 files changed, 26 insertions, 0 deletions
diff --git a/.github/workflows/test-internet.yml b/.github/workflows/test-internet.yml
new file mode 100644
index 0000000000..0a78842ad9
--- /dev/null
+++ b/.github/workflows/test-internet.yml
@@ -0,0 +1,26 @@
+name: test-internet
+
+on:
+ workflow_dispatch:
+ schedule:
+ - cron: "5 0 * * *"
+
+env:
+ PYTHON_VERSION: 3.9
+ FLAKY_TESTS: dontcare
+
+jobs:
+ test-internet:
+ runs-on: ubuntu-latest
+ steps:
+ - uses: actions/checkout@v2
+ - name: Set up Python ${{ env.PYTHON_VERSION }}
+ uses: actions/setup-python@v2
+ with:
+ python-version: ${{ env.PYTHON_VERSION }}
+ - name: Environment Information
+ run: npx envinfo
+ - name: Build
+ run: make build-ci -j2 V=1 CONFIG_FLAGS="--error-on-warn"
+ - name: Test Internet
+ run: make test-internet -j2 V=1;