Fix labeler option #11
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: Ensure package structure and dependencies are correct | |
on: | |
workflow_dispatch: | |
push: | |
branches: | |
- '*' | |
- '!master' | |
concurrency: ${{ github.workflow }}-${{ github.ref }} | |
jobs: | |
release: | |
name: Release | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Repo | |
uses: actions/checkout@v4 | |
- name: Use Node.js v22.10.0 (LTS) | |
uses: ./.github/actions/setup-node-environment | |
with: | |
node-version: 22.10.0 | |
- name: Check for package version drift | |
run: pnpm check-sync |