We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c8d016e commit c4b2570Copy full SHA for c4b2570
.github/workflows/main.yml
@@ -4,7 +4,7 @@ on: [push]
4
5
jobs:
6
build:
7
- name: Test on node ${{ matrix.node_version }} and ${{ matrix.os }}
+ name: Test on VM ${{ matrix.node_version }} and ${{ matrix.os }}
8
runs-on: ${{ matrix.os }}
9
strategy:
10
matrix:
install.sh
@@ -1,5 +1,8 @@
1
#!/usr/bin/env bash
2
3
+# Docker prerequisites (under root):
+# apt -y update && apt -y upgrade && apt install -y curl
+
# Run on new machine as:
# curl -L https://git.io/fjWOf | bash
# OR
@@ -345,6 +348,8 @@ if is_docker_container
345
348
then
346
349
echo "\$@" > /usr/local/bin/sudo
347
350
chmod +x /usr/local/bin/sudo
351
+ export DEBIAN_FRONTEND=noninteractive
352
+ export TZ=Etc/UTC
353
fi
354
355
[[ "$OS" == "Darwin" ]] || check_home_space
0 commit comments