mirror of
https://github.com/freeCodeCamp/freeCodeCamp.git
synced 2026-04-10 04:00:52 -04:00
62 lines
2.1 KiB
YAML
62 lines
2.1 KiB
YAML
name: i18n - Curriculum PR Validation
|
|
on:
|
|
pull_request:
|
|
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
|
|
# run only on PRs that camperbot opens with title that matches the curriculum sync
|
|
if: ${{ github.event.pull_request.user.login == 'camperbot' && contains(github.event.pull_request.title, 'chore(i18n,learn)') }}
|
|
runs-on: ubuntu-24.04
|
|
strategy:
|
|
matrix:
|
|
node-version: [22]
|
|
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v5
|
|
with:
|
|
submodules: 'recursive'
|
|
|
|
- name: Use Node.js ${{ matrix.node-version }}
|
|
uses: actions/setup-node@2028fbc5c25fe9cf00d9f06a71cc4710d4507903 # v6
|
|
with:
|
|
node-version: ${{ matrix.node-version }}
|
|
|
|
- name: Install pnpm
|
|
uses: pnpm/action-setup@41ff72655975bd51cab0327fa583b6e92b6d3061 # v4
|
|
id: pnpm-install
|
|
with:
|
|
run_install: false
|
|
|
|
- name: Set freeCodeCamp Environment Variables
|
|
run: |
|
|
cp sample.env .env
|
|
|
|
- name: Install Dependencies
|
|
run: pnpm install
|
|
|
|
- name: Validate Challenge Files
|
|
id: validate
|
|
run: pnpm run audit-challenges
|
|
|
|
- name: Create Comment
|
|
# Run if the validate challenge files step fails, specifically. Note that we need the failure() call for this step to trigger if the action fails.
|
|
if: ${{ failure() && steps.validate.conclusion == 'failure' }}
|
|
uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8
|
|
with:
|
|
github-token: ${{secrets.CAMPERBOT_NO_TRANSLATE}}
|
|
script: |
|
|
github.rest.issues.createComment({
|
|
issue_number: context.issue.number,
|
|
owner: context.repo.owner,
|
|
repo: context.repo.repo,
|
|
body: "Hey @freecodecamp/i18n, it looks like we have new English curriculum files that need to be translated."
|
|
})
|