Skip to content

Bump actions/setup-node from 5 to 6 #1594

Bump actions/setup-node from 5 to 6

Bump actions/setup-node from 5 to 6 #1594

Workflow file for this run

name: i18n Extract
on:
pull_request:
push:
branches:
- main
jobs:
extract:
runs-on: ubuntu-latest
strategy:
matrix:
node: ['24']
name: Block on unextracted Changes (Node ${{ matrix.node }})
steps:
- name: Checkout Repository
uses: actions/checkout@v5
- name: Set up node
uses: actions/setup-node@v6
with:
node-version: ${{ matrix.node }}
- name: Install dependencies
run: npm ci
- name: Extract i18n
run: npm run i18n:extract
- name: Check for changes
run: |
bash -c "[[ ! \"`git status --porcelain `\" ]] || ( echo 'Unextracted changes on translations' && git status && exit 1 )"