diff --git a/.github/workflows/reg.yml b/.github/workflows/reg.yml index f338f575..b30fcfa9 100644 --- a/.github/workflows/reg.yml +++ b/.github/workflows/reg.yml @@ -20,6 +20,13 @@ jobs: uses: actions/checkout@v2 with: fetch-depth: 0 + - name: Use Node.js v12 + uses: actions/setup-node@v1 + with: + node-version: "12.x" + - name: npm install, build, and test + run: | + npm i - name: Set up JDK 17 uses: actions/setup-java@387ac29b308b003ca37ba93a6cab5eb57c8f5f93 # v4.0.0 with: @@ -41,9 +48,12 @@ jobs: - name: create the current snapshot run: | ./gradlew recordRoborazziDebug --stacktrace - - name: run reg + - name: Run reg-suit1 + run: | + npx reg-suit run --test + - name: Run reg-suit2 run: | - yarn run reg-suit run --test + npx reg-suit sync-expected && npx reg-suit compare && npx reg-suit publish -n # GitHub Page公開元ブランチへレポートをpush - name: deploy report to github page diff --git a/app/src/main/java/com/t/saito/vrtsampleapp/SongScreen.kt b/app/src/main/java/com/t/saito/vrtsampleapp/SongScreen.kt index a408fbb6..84dd9387 100644 --- a/app/src/main/java/com/t/saito/vrtsampleapp/SongScreen.kt +++ b/app/src/main/java/com/t/saito/vrtsampleapp/SongScreen.kt @@ -27,8 +27,8 @@ data class Song( companion object { fun sample(num: Int) = Song( imageUrl = "https://picsum.photos/id/$num/200/300", - title = "Dynamite", - artist = "BTS" + title = "DynamiteDynamiteDynamite", + artist = "BTSBTSBTS" ) val samples = (1..10).map { sample(it) } diff --git a/regconfig.json b/regconfig.json index a9eb2053..5a464961 100644 --- a/regconfig.json +++ b/regconfig.json @@ -11,9 +11,11 @@ "plugins": { "reg-keygen-git-hash-plugin": true, "reg-notify-github-plugin": { + "clientId": "Mzc2MTAxsTS20A8rKglOzC3ISXUsKNA3MTM1NDA1MNAvScwuzc3ULU7MLMkHAA==", "prComment": true, "prCommentBehavior": "default", - "clientId": "Mzc2MTAxsTS20A8rKglOzC3ISXUsKNA3MTM1NDA1MNAvScwuzc3ULU7MLMkHAA==" + "setCommitStatus": false, + "shortDescription": true } } } \ No newline at end of file