INFOPLAT-1402 Beholder gh action #1998
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: pull-request-main | |
on: | |
merge_group: | |
pull_request: | |
branches: | |
- main | |
jobs: | |
ci-lint: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repo (needed to reference local action) | |
uses: actions/checkout@v4.2.1 | |
- name: ci-lint | |
uses: ./actions/ci-lint-ts | |
with: | |
# general inputs | |
checkout-repo: "false" | |
pnpm-version: "^9.0.0" | |
ci-prettier: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repo (needed to reference local action) | |
uses: actions/checkout@v4.2.1 | |
- name: ci-prettier | |
uses: ./actions/ci-prettier | |
with: | |
# general inputs | |
checkout-repo: "false" | |
pnpm-version: "^9.0.0" | |
ci-lint-misc: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repo (needed to reference local action) | |
uses: actions/checkout@v4.2.1 | |
- name: ci-lint-misc | |
uses: ./actions/ci-lint-misc | |
with: | |
# general inputs | |
checkout-repo: "false" | |
cd-signed-commits: | |
# Disable this job until it's updated to be: | |
# 1. More generalizable for all workspaces requiring build artifacts | |
# 2. Have better attribution for the commits generated from this workflow | |
if: false | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repo (needed to reference local action) | |
uses: actions/checkout@v4.2.1 | |
with: | |
# Commit back any changes based on the commit that triggered this action | |
# rather than merge commit of main into the PR branch | |
ref: ${{ github.event.pull_request.head.sha }} | |
- name: Setup pnpm | |
uses: ./actions/setup-nodejs | |
with: | |
pnpm-version: "^9.0.0" | |
- name: Build signed-commits | |
run: pnpm nx run signed-commits:build | |
- name: Commit back any changes | |
uses: planetscale/ghcommit-action@b68767a2e130a71926b365322e62b583404a5e09 # v0.1.43 | |
with: | |
commit_message: "🤖 Update build" | |
repo: ${{ github.repository }} | |
branch: ${{ github.head_ref || github.ref_name }} | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
ci-signed-commits: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repo (needed to reference local action) | |
uses: actions/checkout@v4.2.1 | |
- name: Setup pnpm | |
uses: ./actions/setup-nodejs | |
with: | |
pnpm-version: "^9.0.0" | |
- name: Run tests for signed-commits | |
run: pnpm nx run signed-commits:test | |
ci-test: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repo (needed to reference local action) | |
uses: actions/checkout@v4.2.1 | |
- name: ci-test | |
uses: ./actions/ci-test-ts | |
with: | |
# general inputs | |
checkout-repo: "false" | |
pnpm-version: "^9.0.0" | |
ci-build-artifacts: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repo (needed to reference local action) | |
uses: actions/checkout@v4.2.1 | |
- name: ci-build-artifacts | |
uses: ./actions/cicd-build-publish-artifacts-ts | |
with: | |
# general inputs | |
checkout-repo: "false" | |
pnpm-version: "^9.0.0" | |
ci-actions-dependencies-updater: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repo (needed to reference local action) | |
uses: actions/checkout@v4.2.1 | |
- name: Setup pnpm | |
uses: ./actions/setup-nodejs | |
with: | |
pnpm-version: "^9.0.0" | |
- name: Run typecheck for actions-dependencies-updater | |
shell: bash | |
run: pnpm nx run actions-dependencies-updater:typecheck | |
- name: Run unit tests for actions-dependencies-updater | |
shell: bash | |
run: pnpm nx run actions-dependencies-updater:test | |
ci-gha-workflow-validator: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repo (needed to reference local action) | |
uses: actions/checkout@v4.2.1 | |
- name: Setup pnpm | |
uses: ./actions/setup-nodejs | |
with: | |
pnpm-version: "^9.0.0" | |
- name: Run build for gha-workflow-validator | |
shell: bash | |
run: pnpm nx run gha-workflow-validator:build | |
- name: Run unit tests for gha-workflow-validator | |
shell: bash | |
run: pnpm nx run gha-workflow-validator:test |