name: Build Web App on: push: paths: - 'web-app/**' - '.gitea/workflows/web-app-dev.yaml' branches-ignore: - main jobs: build-and-deploy: runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 - uses: actions/setup-node@v4 with: node-version: '22.x' - name: Enable Corepack run: corepack enable - name: Install Dependencies run: yarn install --immutable working-directory: ./web-app - name: Build run: yarn build working-directory: ./web-app