Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nodejs/node.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to '.github')
-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 00000000000..0a78842ad95
--- /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;