Skip to content

Update gemini-3h-2024-feb-19 -> gemini-3h-2024-mar-04 #881

Update gemini-3h-2024-feb-19 -> gemini-3h-2024-mar-04

Update gemini-3h-2024-feb-19 -> gemini-3h-2024-mar-04 #881

Workflow file for this run

name: Test Deployment
on:
pull_request:
types:
- opened
- edited
- synchronize
branches:
- main
jobs:
setup:
name: Install Dependencies
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v3
with:
node-version: '16'
cache: 'yarn'
- name: Install dependencies
run: yarn install --frozen-lockfile
build-leaderboard:
name: Test Build Translation Leaderboard
needs: setup
runs-on: ubuntu-latest
env:
CROWDIN_PERSONAL_TOKEN: ${{ secrets.CROWDIN_PERSONAL_TOKEN }}
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v3
with:
node-version: '16'
cache: 'yarn'
cache-dependency-path: '**/yarn.lock'
- run: yarn install --frozen-lockfile
- run: yarn run generate-leaderboard
sync-localization:
name: Test Sync Localization Files
needs: setup
runs-on: ubuntu-latest
env:
CROWDIN_PERSONAL_TOKEN: ${{ secrets.CROWDIN_PERSONAL_TOKEN }}
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v3
with:
node-version: '16'
cache: 'yarn'
cache-dependency-path: '**/yarn.lock'
- run: yarn install --frozen-lockfile
- run: yarn crowdin:sync
build-website:
name: Test Build Website
needs: [build-leaderboard, sync-localization]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v3
with:
node-version: '16'
cache: 'yarn'
cache-dependency-path: '**/yarn.lock'
- run: yarn install --frozen-lockfile
- run: yarn build --locale en # Assuming the test build is specific to 'en' locale