Merge pull request #5128 from h3poteto/l10n_main #3763
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: Build | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@master | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 22 | |
- name: Install | |
run: | | |
yarn install | |
- name: typecheck | |
run: | | |
yarn run typecheck | |
- name: Build web | |
run: | | |
yarn run build:web |