feat: front kit preload code hover, code: change translation model to… #699
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: front-server-build | |
on: | |
push: | |
paths: | |
- "defs/**" | |
- "defs-patches/**" | |
- "front/**" | |
branches: [ master, dev ] | |
pull_request: | |
paths: | |
- "defs/**" | |
- "defs-patches/**" | |
- "front/**" | |
branches: [ master, dev ] | |
jobs: | |
# skip_check: | |
# runs-on: ubuntu-latest | |
# outputs: | |
# should_skip: ${{ steps.skip_check.outputs.should_skip }} | |
# steps: | |
# - id: skip_check | |
# uses: fkirc/skip-duplicate-actions@v5 | |
front-server-build: | |
# needs: skip_check | |
# if: needs.skip_check.outputs.should_skip != 'true' | |
defaults: | |
run: | |
working-directory: ./front/server | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node-version: [20.x] | |
steps: | |
- name: Skip Duplicate Actions | |
uses: fkirc/[email protected] | |
- uses: actions/checkout@v3 | |
- name: Use Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v3 | |
with: | |
node-version: ${{ matrix.node-version }} | |
- run: npm run ci | |
working-directory: ./front | |
- run: npm run build --if-present | |
working-directory: ./front/packages/client | |
- run: npm run build --if-present |