chore: fix unrelated lint errors to unblock release CI
Some checks failed
Monorepo Pipeline / ⚡ Prioritize Release (push) Successful in 1s
Monorepo Pipeline / 🧹 Lint (push) Successful in 52s
Monorepo Pipeline / 🏗️ Build (push) Failing after 1m0s
Monorepo Pipeline / 🧪 Test (push) Successful in 4m2s
Monorepo Pipeline / 🚀 Release (push) Has been skipped
Monorepo Pipeline / 🐳 Build Directus (Base) (push) Has been skipped
Monorepo Pipeline / 🐳 Build Gatekeeper (Product) (push) Has been skipped
Monorepo Pipeline / 🐳 Build Build-Base (push) Has been skipped
Monorepo Pipeline / 🐳 Build Production Runtime (push) Has been skipped
🏥 Server Maintenance / 🧹 Prune & Clean (push) Failing after 6s
Some checks failed
Monorepo Pipeline / ⚡ Prioritize Release (push) Successful in 1s
Monorepo Pipeline / 🧹 Lint (push) Successful in 52s
Monorepo Pipeline / 🏗️ Build (push) Failing after 1m0s
Monorepo Pipeline / 🧪 Test (push) Successful in 4m2s
Monorepo Pipeline / 🚀 Release (push) Has been skipped
Monorepo Pipeline / 🐳 Build Directus (Base) (push) Has been skipped
Monorepo Pipeline / 🐳 Build Gatekeeper (Product) (push) Has been skipped
Monorepo Pipeline / 🐳 Build Build-Base (push) Has been skipped
Monorepo Pipeline / 🐳 Build Production Runtime (push) Has been skipped
🏥 Server Maintenance / 🧹 Prune & Clean (push) Failing after 6s
This commit is contained in:
2
.env
2
.env
@@ -1,5 +1,5 @@
|
|||||||
# Project
|
# Project
|
||||||
IMAGE_TAG=1.8.4
|
IMAGE_TAG=v1.8.10
|
||||||
PROJECT_NAME=at-mintel
|
PROJECT_NAME=at-mintel
|
||||||
PROJECT_COLOR=#82ed20
|
PROJECT_COLOR=#82ed20
|
||||||
GITEA_TOKEN=ccce002e30fe16a31a6c9d5a414740af2f72a582
|
GITEA_TOKEN=ccce002e30fe16a31a6c9d5a414740af2f72a582
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
/* global module, require */
|
import path from "node:path";
|
||||||
/** @type {import('tailwindcss').Config} */
|
/** @type {import('tailwindcss').Config} */
|
||||||
module.exports = {
|
module.exports = {
|
||||||
content: [
|
content: [
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
import * as React from "react";
|
import * as React from "react";
|
||||||
import { Heading, Section, Text, Button, Link } from "@react-email/components";
|
import { Heading, Section, Text, Button } from "@react-email/components";
|
||||||
import { MintelLayout } from "../layouts/MintelLayout";
|
import { MintelLayout } from "../layouts/MintelLayout";
|
||||||
|
|
||||||
export interface SiteAuditTemplateProps {
|
export interface SiteAuditTemplateProps {
|
||||||
|
|||||||
@@ -11,9 +11,9 @@ const entryPoints = [
|
|||||||
resolve(__dirname, 'src/server.ts')
|
resolve(__dirname, 'src/server.ts')
|
||||||
];
|
];
|
||||||
|
|
||||||
try {
|
} catch (_e) {
|
||||||
mkdirSync(resolve(__dirname, 'dist'), { recursive: true });
|
// Ignore folder creation errors if it already exists
|
||||||
} catch (e) { }
|
}
|
||||||
|
|
||||||
console.log(`Building entry points...`);
|
console.log(`Building entry points...`);
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user