debugging
This commit is contained in:
parent
34df58168b
commit
3814b179ce
4 changed files with 7 additions and 4 deletions
|
@ -24,7 +24,9 @@ jobs:
|
|||
- name: Check availability
|
||||
run: |
|
||||
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;
|
||||
done;
|
||||
- name: Run unlighthouse
|
||||
|
|
4
package-lock.json
generated
4
package-lock.json
generated
|
@ -1,12 +1,12 @@
|
|||
{
|
||||
"name": "@firq/fgosite",
|
||||
"version": "0.2.0-pre.99",
|
||||
"version": "0.2.0-pre.100",
|
||||
"lockfileVersion": 3,
|
||||
"requires": true,
|
||||
"packages": {
|
||||
"": {
|
||||
"name": "@firq/fgosite",
|
||||
"version": "0.2.0-pre.99",
|
||||
"version": "0.2.0-pre.100",
|
||||
"dependencies": {
|
||||
"@astro-community/astro-embed-youtube": "^0.5.6",
|
||||
"@astrojs/check": "^0.9.4",
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
{
|
||||
"name": "@firq/fgosite",
|
||||
"type": "module",
|
||||
"version": "0.2.0-pre.99",
|
||||
"version": "0.2.0-pre.100",
|
||||
"private": true,
|
||||
"scripts": {
|
||||
"dev": "astro dev",
|
||||
|
|
1
start.sh
1
start.sh
|
@ -1,4 +1,5 @@
|
|||
#!/bin/sh
|
||||
cd /
|
||||
echo "Website version: ${version}"
|
||||
echo "powered by @Firq"
|
||||
serve --listen 8081 --no-clipboard /public
|
||||
|
|
Loading…
Add table
Reference in a new issue