Skip to content

Commit

Permalink
add lint and i18n pipeline
Browse files Browse the repository at this point in the history
  • Loading branch information
raphaelblum committed Feb 21, 2024
1 parent f6b4226 commit b9b7bff
Show file tree
Hide file tree
Showing 2 changed files with 136 additions and 0 deletions.
67 changes: 67 additions & 0 deletions .github/workflows/i18n.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,67 @@
name: i18n

on:
push:
branches:
- main

jobs:
i18n:
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 github-actions@github.com
- name: "Library: Clone translations"
uses: actions/checkout@v3
with:
repository: vivid-planet/comet-lang
token: ${{ secrets.VIVID_PLANET_BOT_TOKEN }}
path: "demo/admin/lang/comet-lang"

- name: "Demo: Clone translations"
uses: actions/checkout@v3
with:
repository: vivid-planet/comet-demo-lang
token: ${{ secrets.VIVID_PLANET_BOT_TOKEN }}
path: "demo/admin/lang/comet-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: "Library: Extract i18n strings"
run: |
pnpm run intl:extract
cp -r lang/* demo/admin/lang/comet-lang/
- name: "Library: Update translateable strings"
uses: EndBug/add-and-commit@v9
with:
cwd: "./demo/admin/lang/comet-lang"

- name: "Demo: Extract i18n strings"
run: |
cd demo/admin
pnpm run intl:extract
cp -r lang-extracted/* lang/comet-demo-lang
- name: "Demo: Update translateable strings"
uses: EndBug/add-and-commit@v9
with:
cwd: "./demo/admin/lang/comet-demo-lang"
69 changes: 69 additions & 0 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,69 @@
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 github-actions@github.com
- name: "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"

- 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 exec prettier --check "./*.{js,json,md,yml}"
pnpm run lint
# check for duplicate ids of formatted messages
pnpm run intl:extract
- name: Test
run: pnpm run test

- name: Upload test results
uses: actions/upload-artifact@v3
if: success() || failure()
with:
name: test-results
path: packages/**/junit.xml

0 comments on commit b9b7bff

Please sign in to comment.