Bump sass from 1.91.0 to 1.93.0 in /frontend #843
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 Frontend | |
| on: | |
| workflow_dispatch: | |
| push: | |
| paths: | |
| - 'papermerge/**' | |
| - 'frontend/apps/ui/**' | |
| - '.github/workflows/frontend-build.yml' | |
| jobs: | |
| ui: | |
| runs-on: ubuntu-latest | |
| defaults: | |
| run: | |
| working-directory: frontend/ | |
| steps: | |
| - uses: actions/checkout@v5 | |
| - name: Set Node.js 20.x | |
| uses: actions/setup-node@v5 | |
| with: | |
| node-version: 20.x | |
| - name: Install latest Yarn | |
| run: corepack enable | |
| - name: Activate latest Yarn | |
| run: yarn set version 4.9.2 | |
| - name: Install Node.js dependencies | |
| run: yarn install --immutable | |
| - name: Run yarn build UI | |
| run: yarn workspace ui build |