Skip to content

#1859 i18n: add more app and webpage translation #497

#1859 i18n: add more app and webpage translation

#1859 i18n: add more app and webpage translation #497

Workflow file for this run

name: Build Webpage
on:
workflow_dispatch:
push:
branches-ignore: [release, main]
tags-ignore:
- "**"
# https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#example-including-paths
# if [[ ${changed_file} == "CHANGELOG.md" ]] || [[ ${changed_file} = screenshots* ]] || [[ ${changed_file} = webpage* ]] || [[ ${changed_file} = ".github/workflows/build-webpage.yml" ]] ;
paths:
- "CHANGELOG.md"
- "screenshots/**"
- "webpage/**"
- ".github/workflows/build-webpage.yml"
pull_request:
branches-ignore: [release]
# https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#example-including-paths
# if [[ ${changed_file} == "CHANGELOG.md" ]] || [[ ${changed_file} = screenshots* ]] || [[ ${changed_file} = webpage* ]] || [[ ${changed_file} = ".github/workflows/build-webpage.yml" ]] ;
paths:
- "CHANGELOG.md"
- "screenshots/**"
- "webpage/**"
- ".github/workflows/build-webpage.yml"
defaults:
run:
working-directory: webpage
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- name: Use Node.js
uses: actions/setup-node@v6
with:
node-version: "20"
- run: npm install
- run: npm run build