diff --git a/.github/workflows/backend.yml b/.github/workflows/backend.yml index dc756cb..753a45b 100644 --- a/.github/workflows/backend.yml +++ b/.github/workflows/backend.yml @@ -32,7 +32,7 @@ jobs: if: needs.context.outputs.shouldBuild == 'true' uses: play-iot/gha-ci/.github/workflows/gradle-build.yml@main with: - profile: 'all' + profile: 'ciBuild' version: ${{ needs.context.outputs.version }} semanticVersion: ${{ needs.context.outputs.semanticVersion }} hashVersion: ${{ needs.context.outputs.commitId }} diff --git a/backend/domdom/src/main/java/cloud/playio/domdom/DomDom.java b/backend/domdom/src/main/java/cloud/playio/domdom/DomDom.java new file mode 100644 index 0000000..9a15bdf --- /dev/null +++ b/backend/domdom/src/main/java/cloud/playio/domdom/DomDom.java @@ -0,0 +1,14 @@ +/* + * Copyright (c) 2023. https://playio.cloud/ + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * All rights reserved. + */ + +package cloud.playio.domdom; + +public class DomDom {} diff --git a/package.json b/package.json index b3947da..f513f16 100644 --- a/package.json +++ b/package.json @@ -42,11 +42,11 @@ "typescript" : "^4.5.2" }, "scripts" : { - "build" : "lerna run build", - "clean" : "lerna run clean", - "lint" : "lerna run lint", + "build" : "CI=false lerna run build", + "clean" : "CI=false lerna run clean", + "lint" : "CI=false lerna run lint", "test" : "lerna run test", - "typecheck" : "lerna run typecheck", + "typecheck" : "CI=false lerna run typecheck", "app:start" : "yarn workspace @domdom/app start", "es4x:start" : "yarn workspace @domdom/es4x start" },