Skip to content

Commit df3366b

Browse files
authored
ci: merge main to release
2 parents 99ba77a + 9ae860f commit df3366b

20 files changed

Lines changed: 346 additions & 157 deletions

.pnp.cjs

Lines changed: 11 additions & 11 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.yarn/cache/highcharts-npm-11.0.1-05a14e3887-773a7b8765.zip renamed to .yarn/cache/highcharts-npm-11.1.0-0d42a04430-f9b8cdc38b.zip

21.9 MB
Binary file not shown.
-722 KB
Binary file not shown.
729 KB
Binary file not shown.

dev/coverage-action/package-lock.json

Lines changed: 34 additions & 31 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dev/coverage-action/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@
1414
"luxon": "3.3.0"
1515
},
1616
"devDependencies": {
17-
"eslint": "8.41.0",
18-
"eslint-config-standard": "17.0.0",
17+
"eslint": "8.42.0",
18+
"eslint-config-standard": "17.1.0",
1919
"eslint-plugin-import": "2.27.5",
2020
"eslint-plugin-node": "11.1.0",
2121
"eslint-plugin-promise": "6.1.1",

dev/del-old-packages/package-lock.json

Lines changed: 7 additions & 7 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dev/del-old-packages/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
"author": "",
1111
"license": "ISC",
1212
"dependencies": {
13-
"@octokit/core": "^4.2.1",
13+
"@octokit/core": "^4.2.4",
1414
"luxon": "^3.3.0"
1515
}
1616
}

docker/configs/nginx-proxy.conf

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
server {
22
listen 8000 default_server;
33
listen [::]:8000 default_server;
4+
5+
proxy_read_timeout 1d;
6+
proxy_send_timeout 1d;
47

58
root /var/www/html;
69
index index.html index.htm index.nginx-debian.html;

docker/scripts/app-init.sh

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,14 +22,16 @@ echo "Fix chromedriver /dev/shm permissions..."
2222
sudo chmod 1777 /dev/shm
2323

2424
# Run nginx
25-
2625
echo "Starting nginx..."
2726
sudo nginx
2827

2928
# Build node packages that requrie native compilation
3029
echo "Compiling native node packages..."
3130
yarn rebuild
3231

32+
# Silence Browserlist warnings
33+
export BROWSERSLIST_IGNORE_OLD_DATA=1
34+
3335
# Generate static assets
3436
echo "Building static assets... (this could take a minute or two)"
3537
yarn build

0 commit comments

Comments
 (0)