Skip to content

feat!(i18n-array): Move language identifier from _key to dedicated language field #1864

feat!(i18n-array): Move language identifier from _key to dedicated language field

feat!(i18n-array): Move language identifier from _key to dedicated language field #1864

Workflow file for this run

name: CI
on:
pull_request:
push:
branches:
- main
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
cancel-in-progress: true
permissions:
contents: read
jobs:
build:
runs-on: ubuntu-latest
env:
TURBO_TOKEN: ${{ secrets.TURBO_TOKEN }}
TURBO_TEAM: ${{ vars.TURBO_TEAM }}
steps:
- uses: actions/checkout@v6
- uses: ./.github/actions/setup
- name: Build
run: pnpm turbo run build --filter='!./dev/*'
lint:
runs-on: ubuntu-latest
env:
TURBO_TOKEN: ${{ secrets.TURBO_TOKEN }}
TURBO_TEAM: ${{ vars.TURBO_TEAM }}
steps:
- uses: actions/checkout@v6
- uses: ./.github/actions/setup
- run: pnpm lint --format github
test:
runs-on: ubuntu-latest
needs: build
env:
TURBO_TOKEN: ${{ secrets.TURBO_TOKEN }}
TURBO_TEAM: ${{ vars.TURBO_TEAM }}
steps:
- uses: actions/checkout@v6
with:
fetch-depth: 0
- uses: ./.github/actions/setup
- name: Test (PR)
if: github.event_name == 'pull_request'
run: pnpm test --changed origin/${{ github.base_ref }}
- name: Test
if: github.event_name != 'pull_request'
run: pnpm test