chore: version packages #4401
Workflow file for this run
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: Verify changes | |
on: | |
pull_request: | |
push: | |
branches: | |
- main | |
- 'release/**' | |
jobs: | |
branch-info: | |
name: Branch Info | |
runs-on: ubuntu-latest | |
steps: | |
- name: Get base branch | |
id: get-base-branch | |
run: | | |
if [[ "${{github.event.pull_request.base.ref}}" != "" ]]; then | |
echo "BRANCH=${{github.event.pull_request.base.ref}}" >> $GITHUB_OUTPUT | |
else | |
echo "BRANCH=main" >> $GITHUB_OUTPUT | |
fi | |
outputs: | |
base-branch: ${{ steps.get-base-branch.outputs.BRANCH }} | |
test: | |
name: Test | |
needs: [branch-info] | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- uses: pnpm/action-setup@v3 | |
- name: Derive appropriate SHAs for base and head for `nx affected` commands | |
uses: nrwl/nx-set-shas@v4 | |
with: | |
main-branch-name: ${{needs.branch-info.outputs.base-branch}} | |
- name: Setup Node | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 22 | |
cache: pnpm | |
- name: Install Dependencies | |
run: pnpm install | |
- name: Test | |
run: pnpm test:packages | |
typecheck: | |
name: Type Check | |
needs: [branch-info] | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- uses: pnpm/action-setup@v3 | |
- name: Derive appropriate SHAs for base and head for `nx affected` commands | |
uses: nrwl/nx-set-shas@v4 | |
with: | |
main-branch-name: ${{needs.branch-info.outputs.base-branch}} | |
- name: Setup Node | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 22 | |
cache: pnpm | |
- name: Install Dependencies | |
run: pnpm install | |
- name: Type Check | |
run: pnpm typecheck | |
quality: | |
name: Quality | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Setup Biome | |
uses: biomejs/setup-biome@v2 | |
- name: Run Biome | |
run: biome ci . |