Skip to content

Samples unify playground #14432

Samples unify playground

Samples unify playground #14432

Workflow file for this run

name: Consistency
# Controls when the workflow will run
on:
# Triggers the workflow on push or pull request events but only for the "main" branch
push:
branches: ["main", "release/*"]
pull_request:
branches: ["main", "release/*"]
merge_group:
workflow_dispatch: {}
permissions:
contents: read
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
check-changes:
name: Check Changes
runs-on: ubuntu-latest
if: github.event_name == 'pull_request'
steps:
- uses: actions/checkout@v6
with:
fetch-depth: 0 ## Needed for Changesets to find `main` branch
submodules: recursive
- uses: ./.github/actions/setup
- run: git pull --force --no-tags origin ${{ github.event.pull_request.base.ref }}:${{ github.event.pull_request.base.ref }}
name: Get ${{ github.event.pull_request.base.ref }} ref for ${{ github.ref}}, evt ${{ github.event_name }}
- run: pnpm install
name: Install dependencies
- run: npx chronus verify --since ${{ github.event.pull_request.base.ref }}
name: Check changelog
if: |
!startsWith(github.head_ref, 'publish/') &&
!startsWith(github.head_ref, 'dependabot/') &&
!startsWith(github.head_ref, 'backmerge/') &&
!startsWith(github.head_ref, 'revert-')
- run: node eng/scripts/validate-core-submodule.js
name: Check that core submodule is merged to core repo
if: |
!startsWith(github.base_ref, 'release/')
# Validate spell check
spellcheck:
name: Spell check
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
with:
submodules: recursive
- uses: ./.github/actions/setup
- run: pnpm install
name: Install dependencies
- run: pnpm run cspell
name: Spell check
# Validate formatting
format:
name: Format
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
with:
submodules: recursive
- uses: ./.github/actions/setup
- run: pnpm install
name: Install dependencies
- run: pnpm --filter="@typespec/prettier-plugin-typespec..." run build
name: Build prettier plugin
- run: pnpm run format:check
name: Check formatting
- run: pnpm run format:extra:check
name: Check formatting (Extra)
# Lint
lint:
name: Lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
with:
submodules: recursive
- uses: ./.github/actions/setup
- run: pnpm install
name: Install dependencies
- run: pnpm --filter="@typespec/eslint-plugin..." run build
name: Build prettier plugin
- run: pnpm run lint
name: Lint
- run: pnpm run lint:extra
name: Lint (Extra)
# cspell:ignore rhysd
# Content copied from https://raw.githubusercontent.com/rhysd/actionlint/2ab3a12c7848f6c15faca9a92612ef4261d0e370/.github/actionlint-matcher.json
- name: Add ActionLint Problem Matcher
run: echo "::add-matcher::.github/matchers/actionlint.json"
- name: Lint GitHub Actions workflows
uses: docker://rhysd/actionlint:1.7.11
with:
args: -color -verbose
# Check catalog is in sync with core
version-consistency:
name: Versions consistency
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
with:
submodules: recursive
- uses: ./.github/actions/setup
- run: pnpm install
name: Install dependencies
- run: pnpm deps check
name: Check catalog is in sync
# Verify Arm OpenAPI common types are up to date
common-types-up-to-date:
name: Common types up to date
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
with:
submodules: recursive
- uses: ./.github/actions/setup
- run: pnpm install
name: Install dependencies
- run: pnpm tsx eng/scripts/sync-common-types.ts
name: Swagger - Fetch common-types v3
- run: node eng/scripts/check-for-changed-files.js
name: Check Git Status For Changed Files