debugging
This commit is contained in:
parent
34df58168b
commit
5b9ce01877
4 changed files with 7 additions and 4 deletions
|
@ -24,7 +24,9 @@ jobs:
|
||||||
- name: Check availability
|
- name: Check availability
|
||||||
run: |
|
run: |
|
||||||
while [ "$(curl -o /dev/null -s -w '%{http_code}' http://website:8081)" -ne 200 ];
|
while [ "$(curl -o /dev/null -s -w '%{http_code}' http://website:8081)" -ne 200 ];
|
||||||
do echo "Waiting...";
|
do
|
||||||
|
echo "Waiting...";
|
||||||
|
echo "$(curl -o /dev/null -s -w '%{http_code}' http://website:8081 || echo '000')"
|
||||||
sleep 5;
|
sleep 5;
|
||||||
done;
|
done;
|
||||||
- name: Run unlighthouse
|
- name: Run unlighthouse
|
||||||
|
|
4
package-lock.json
generated
4
package-lock.json
generated
|
@ -1,12 +1,12 @@
|
||||||
{
|
{
|
||||||
"name": "@firq/fgosite",
|
"name": "@firq/fgosite",
|
||||||
"version": "0.2.0-pre.99",
|
"version": "0.2.0-pre.100",
|
||||||
"lockfileVersion": 3,
|
"lockfileVersion": 3,
|
||||||
"requires": true,
|
"requires": true,
|
||||||
"packages": {
|
"packages": {
|
||||||
"": {
|
"": {
|
||||||
"name": "@firq/fgosite",
|
"name": "@firq/fgosite",
|
||||||
"version": "0.2.0-pre.99",
|
"version": "0.2.0-pre.100",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@astro-community/astro-embed-youtube": "^0.5.6",
|
"@astro-community/astro-embed-youtube": "^0.5.6",
|
||||||
"@astrojs/check": "^0.9.4",
|
"@astrojs/check": "^0.9.4",
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
{
|
{
|
||||||
"name": "@firq/fgosite",
|
"name": "@firq/fgosite",
|
||||||
"type": "module",
|
"type": "module",
|
||||||
"version": "0.2.0-pre.99",
|
"version": "0.2.0-pre.100",
|
||||||
"private": true,
|
"private": true,
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"dev": "astro dev",
|
"dev": "astro dev",
|
||||||
|
|
1
start.sh
1
start.sh
|
@ -1,4 +1,5 @@
|
||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
|
cd /
|
||||||
echo "Website version: ${version}"
|
echo "Website version: ${version}"
|
||||||
echo "powered by @Firq"
|
echo "powered by @Firq"
|
||||||
serve --listen 8081 --no-clipboard /public
|
serve --listen 8081 --no-clipboard /public
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue