Skip to content

Commit 67de2ba

Browse files
committed
Publish Build Scans from CI
1 parent 9a5accb commit 67de2ba

File tree

3 files changed

+32
-2
lines changed

3 files changed

+32
-2
lines changed

.github/workflows/build.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,4 +27,4 @@ jobs:
2727
with:
2828
cache-read-only: ${{ github.event_name == 'pull_request' }}
2929
- name: Build
30-
run: ./gradlew build ${{ matrix.config.params }}
30+
run: ./gradlew --scan build ${{ matrix.config.params }}

examples/simple-node/npm/package-lock.json

+18-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

settings.gradle.kts

+13
Original file line numberDiff line numberDiff line change
@@ -1 +1,14 @@
1+
plugins {
2+
id("com.gradle.enterprise") version("3.10.1")
3+
}
4+
5+
gradleEnterprise {
6+
buildScan {
7+
termsOfServiceUrl = "https://gradle.com/terms-of-service"
8+
if (System.getenv().containsKey("CI")) {
9+
termsOfServiceAgree = "yes"
10+
}
11+
}
12+
}
13+
114
rootProject.name = "gradle-node-plugin"

0 commit comments

Comments
 (0)