Skip to content

chore(deps-dev): bump prettier from 3.3.2 to 3.3.3 #71

chore(deps-dev): bump prettier from 3.3.2 to 3.3.3

chore(deps-dev): bump prettier from 3.3.2 to 3.3.3 #71

Workflow file for this run

# This workflow checks the version of the application package that is being
# built in the current pull request. If the version has already been published,
# the workflow fails to prevent PRs from being merged until the version has been
# incremented in the manifest file.
name: Version Check
on:
pull_request:
branches:
- main
env:
MANIFEST_PATH: package.json
permissions:
checks: write
contents: read
pull-requests: write
jobs:
check-version:
name: Version Check
runs-on: ubuntu-latest
if: "startsWith(github.event.head_commit.message, 'feat')"
steps:
# The fetch-depth and fetch-tags options are required
- name: Checkout
id: checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
fetch-tags: true
- name: Check Version
id: check-version
uses: issue-ops/semver@v1.2.0
with:
check-only: true
manifest-path: ${{ env.MANIFEST_PATH }}