chore(deps): update plugin screenshot to v0.0.1-alpha08 #4455
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
on: | |
push: | |
branches: | |
- main | |
- renovate/** | |
pull_request: | |
branches: | |
- main | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
check: | |
runs-on: macos-14 | |
steps: | |
- name: Setup build environment | |
uses: msfjarvis/compose-lobsters/.github/reusable-workflows/setup-gradle@main | |
with: | |
fetch-depth: 0 | |
cache-read-only: ${{ github.ref != 'refs/heads/main' }} | |
dependency-graph: generate-and-submit | |
- name: Check changelog format | |
uses: mindsers/changelog-reader-action@32aa5b4c155d76c94e4ec883a223c947b2f02656 # v2.2.3 | |
with: | |
path: ./CHANGELOG.md | |
validation_level: error | |
- name: Run unit tests | |
run: ./gradlew --no-configuration-cache --stacktrace check -PslimTests | |
- name: (Fail-only) Upload test report | |
if: failure() | |
uses: actions/upload-artifact@b4b15b8c7c6ac21ea08fcf65892d2ee8f75cf882 # v4.4.3 | |
with: | |
name: Test report | |
path: '**/build/reports/tests/**' | |
dependency-review: | |
runs-on: macos-14 | |
if: "github.event_name == 'push' && github.event.ref != 'refs/heads/main'" | |
needs: | |
- check | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | |
- name: Dependency Review | |
uses: actions/dependency-review-action@4081bf99e2866ebe428fc0477b69eb4fcda7220a # v4 | |
with: | |
base-ref: refs/heads/main | |
head-ref: ${{ github.ref }} |