dde272c4b8
CD - Docker - GHCR Images / Build and Push Images (push) Waiting to run
i18n - Build Validation / Validate i18n Builds (24) (push) Has been cancelled
CI - Node.js / Lint (24) (push) Has been cancelled
CI - Node.js / Build (24) (push) Has been cancelled
CI - Node.js / Test (24) (push) Has been cancelled
CI - Node.js / Test - Upcoming Changes (24) (push) Has been cancelled
CI - Node.js / Test - i18n (italian, 24) (push) Has been cancelled
CI - Node.js / Test - i18n (portuguese, 24) (push) Has been cancelled
51 lines
1.4 KiB
YAML
51 lines
1.4 KiB
YAML
name: i18n - Build Validation
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
|
|
concurrency:
|
|
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.event.workflow_run.head_branch || github.ref }}
|
|
cancel-in-progress: true
|
|
|
|
jobs:
|
|
ci:
|
|
name: Validate i18n Builds
|
|
runs-on: ubuntu-24.04
|
|
strategy:
|
|
matrix:
|
|
node-version: [24]
|
|
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
|
|
with:
|
|
submodules: 'recursive'
|
|
|
|
- name: Use Node.js ${{ matrix.node-version }}
|
|
uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e # v6
|
|
with:
|
|
node-version: ${{ matrix.node-version }}
|
|
|
|
- name: Install pnpm
|
|
uses: pnpm/action-setup@91ab88e2619ed1f46221f0ba42d1492c02baf788 # v6
|
|
id: pnpm-install
|
|
with:
|
|
run_install: false
|
|
|
|
- name: Setup Turbo Cache
|
|
uses: ./.github/actions/setup-turbo-cache
|
|
with:
|
|
turbo-token: ${{ secrets.TURBO_TOKEN }}
|
|
turbo-signature-key: ${{ secrets.TURBO_REMOTE_CACHE_SIGNATURE_KEY }}
|
|
|
|
- name: Set freeCodeCamp Environment Variables
|
|
run: |
|
|
sed '/^[[:space:]]*#/d; /^$/d' sample.env >> $GITHUB_ENV
|
|
|
|
- name: Install Dependencies
|
|
run: pnpm install
|
|
|
|
- name: Validate Challenge Files
|
|
run: pnpm run audit-challenges
|