Skip to content

Update Portuguese-BR translation for Continuous Delivery #638

Update Portuguese-BR translation for Continuous Delivery

Update Portuguese-BR translation for Continuous Delivery #638

Workflow file for this run

name: Node.js CI
on:
push:
branches: [master]
pull_request:
schedule:
- cron: '0 0 * * 1'
permissions:
contents: read
jobs:
build:
runs-on: ubuntu-latest
timeout-minutes: 15
steps:
- uses: actions/checkout@v6
with:
submodules: recursive
- name: Setup Node.js
uses: actions/setup-node@v6
with:
node-version: 24
cache: 'npm'
- name: Install dependencies
run: npm ci
- name: Setup Hugo
uses: peaceiris/actions-hugo@v3
with:
hugo-version: '0.163.0'
extended: true
- name: Run linting tests
run: npm test
- name: Build site with Hugo
run: hugo -d $GITHUB_WORKSPACE/public
- name: Run broken links test
run: npm run test:links
env:
CI: true