Merge main into next #327
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: 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@v3 | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} | |
- run: | | |
git config user.name github-actions | |
git config user.email [email protected] | |
- name: "COMET Library: Clone translations" | |
uses: actions/checkout@v3 | |
with: | |
repository: vivid-planet/comet-lang | |
token: ${{ secrets.GITHUB_TOKEN }} | |
path: "demo/admin/lang/comet-lang" | |
- name: "COMET Brevo Library: Clone translations" | |
uses: actions/checkout@v3 | |
with: | |
repository: vivid-planet/comet-brevo-module-lang | |
token: ${{ secrets.GITHUB_TOKEN }} | |
path: "demo/admin/lang/comet-brevo-module-lang" | |
- name: "Demo: Clone translations" | |
uses: actions/checkout@v3 | |
with: | |
repository: vivid-planet/comet-brevo-module-demo-lang | |
token: ${{ secrets.GITHUB_TOKEN }} | |
path: "demo/admin/lang/comet-brevo-module-demo-lang" | |
- uses: pnpm/action-setup@v2 | |
with: | |
version: 8 | |
- name: Use Node.js 18.x | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 18 | |
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:lib | |
- name: Lint | |
run: | | |
pnpm run lint | |
# check for duplicate ids of formatted messages | |
pnpm run intl:extract |