Bump undici from 6.19.8 to 6.21.1 #1455
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: i18n Extract | |
on: | |
pull_request: | |
push: | |
branches: | |
- main | |
jobs: | |
extract: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node: ['20'] | |
name: Block on unextracted Changes (Node ${{ matrix.node }}) | |
steps: | |
- name: Checkout Repository | |
uses: actions/checkout@v4 | |
- name: Set up node | |
uses: actions/setup-node@v4 | |
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 )" |