Merge main
into feature/custom-button
#9943
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: Lint | |
on: | |
pull_request: | |
types: | |
- opened | |
- synchronize | |
- reopened | |
push: | |
branches: | |
- main | |
- next | |
jobs: | |
lint: | |
name: Lint | |
runs-on: ubuntu-latest | |
steps: | |
- run: echo "${{ github.actor }}" | |
- uses: actions/checkout@v4 | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} | |
- run: | | |
git config user.name github-actions | |
git config user.email github-actions@github.com | |
- name: "Library: Clone translations" | |
uses: actions/checkout@v4 | |
with: | |
repository: vivid-planet/comet-lang | |
token: ${{ secrets.GITHUB_TOKEN }} | |
path: "demo/admin/lang/comet-lang" | |
- name: "Demo Admin: Clone translations" | |
uses: actions/checkout@v4 | |
with: | |
repository: vivid-planet/comet-demo-lang | |
token: ${{ secrets.GITHUB_TOKEN }} | |
path: "demo/admin/lang/comet-demo-lang" | |
- name: "Demo Site: Clone translations" | |
uses: actions/checkout@v4 | |
with: | |
repository: vivid-planet/comet-demo-lang | |
token: ${{ secrets.GITHUB_TOKEN }} | |
path: "demo/site/lang/comet-demo-lang" | |
- name: "Demo Site Pages: Clone translations" | |
uses: actions/checkout@v4 | |
with: | |
repository: vivid-planet/comet-demo-lang | |
token: ${{ secrets.GITHUB_TOKEN }} | |
path: "demo/site-pages/lang/comet-demo-lang" | |
- uses: pnpm/action-setup@v4 | |
- name: Use Node.js 22.x | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 22 | |
registry-url: "https://registry.npmjs.org" | |
cache: "pnpm" # https://github.com/actions/setup-node/blob/main/docs/advanced-usage.md#caching-packages-dependencies | |
- run: pnpm install --frozen-lockfile | |
- name: Copy schema files | |
run: pnpm run copy-schema-files | |
- name: Build | |
run: pnpm run build:packages | |
- name: Lint | |
run: | | |
pnpm run lint | |
# check for duplicate ids of formatted messages | |
pnpm run intl:extract | |
# check if schema files are up to date | |
pnpm --filter '@comet/blocks-api' run generate-block-meta | |
pnpm --filter '@comet/cms-api' run generate-block-meta | |
pnpm --filter '@comet/cms-api' run generate-schema | |
git diff --exit-code HEAD -- |