Update translations #177
This file contains hidden or 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: Next.js build | |
| on: | |
| push: | |
| branches: [ main ] | |
| pull_request: | |
| branches: [ main ] | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: Use Node.js | |
| uses: actions/setup-node@v6 | |
| with: | |
| node-version: '22' | |
| # The lockfile is generated with npm 11 (see Dockerfile, which pins npm@11). | |
| # npm 10 resolves a peer-dep conflict (@swc/helpers 0.5.15 vs a >=0.5.17 | |
| # peer) differently and reports the lock as out of sync, so pin npm here too. | |
| - name: Pin npm | |
| run: npm install -g npm@11 | |
| - name: Install dependencies | |
| run: npm ci | |
| - name: Build | |
| run: npm run build |