#1859 i18n: add more app and webpage translation #497
Workflow file for this run
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: 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 |