Test run name
All checks were successful
Linting and checking code / get-version (push) Successful in 2s
Linting and checking code / astro-check (push) Successful in 11s
Build and deploy preview site / check-tag (push) Successful in 2s
Build and deploy preview site / checking (push) Successful in 13s
Build and deploy preview site / build-site (push) Successful in 1m11s
Build and deploy preview site / run-unlighthouse (push) Successful in 0s
Build and deploy preview site / create-release (push) Successful in 5s
Build and deploy preview site / auto-deploy-dockge (push) Successful in 26s
All checks were successful
Linting and checking code / get-version (push) Successful in 2s
Linting and checking code / astro-check (push) Successful in 11s
Build and deploy preview site / check-tag (push) Successful in 2s
Build and deploy preview site / checking (push) Successful in 13s
Build and deploy preview site / build-site (push) Successful in 1m11s
Build and deploy preview site / run-unlighthouse (push) Successful in 0s
Build and deploy preview site / create-release (push) Successful in 5s
Build and deploy preview site / auto-deploy-dockge (push) Successful in 26s
This commit is contained in:
parent
1945b41b4b
commit
c3dc83ff1d
5 changed files with 9 additions and 2 deletions
|
@ -1,3 +1,5 @@
|
|||
name: Build and deploy preview site
|
||||
run-name: Building and deploying pewview for version ${{ github.ref_name }}
|
||||
on:
|
||||
push:
|
||||
tags:
|
||||
|
|
|
@ -1,3 +1,5 @@
|
|||
name: Build and deploy production site
|
||||
run-name: Building and deploying release for version ${{ github.ref_name }}
|
||||
on:
|
||||
push:
|
||||
tags:
|
||||
|
|
|
@ -1,3 +1,4 @@
|
|||
name: Linting and checking code
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
|
@ -9,7 +10,7 @@ jobs:
|
|||
steps:
|
||||
- name: Checking Out Repository Code
|
||||
uses: https://code.forgejo.org/actions/checkout@v3
|
||||
- name: Check if Version in package.json matches Tag
|
||||
- name: Get version from package.json
|
||||
run: |
|
||||
VERSION=$(npm pkg get version --workspaces=false | tr -d \")
|
||||
echo "Version is: '$VERSION'";
|
||||
|
|
|
@ -1,3 +1,5 @@
|
|||
name: Run unlighthouse-tests
|
||||
run-name: Run unlighthouse-tests for version ${{ inputs.containertag }}
|
||||
on:
|
||||
workflow_dispatch:
|
||||
inputs:
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
{
|
||||
"name": "@firq/fgosite",
|
||||
"type": "module",
|
||||
"version": "0.2.0-pre.36",
|
||||
"version": "0.2.0-pre.37",
|
||||
"private": true,
|
||||
"scripts": {
|
||||
"dev": "astro dev",
|
||||
|
|
Loading…
Reference in a new issue