Files
self/.github/workflows/web.yml
Javier Cortejoso 8c96f6fd5c Merge pull request #1523 from selfxyz/jcortejoso/no-path-filter (#1528)
SELF-1684: Ensure checks are run with pull requests to staging/main
2025-12-25 01:05:09 +01:00

27 lines
557 B
YAML

name: Web CI
on:
pull_request:
branches:
- dev
- staging
- main
paths:
- "app/**"
- ".github/workflows/web.yml"
- ".github/actions/**"
jobs:
web-build:
runs-on: ubuntu-latest
if: false
steps:
- uses: actions/checkout@v6
- name: Install Dependencies
uses: ./.github/actions/yarn-install
- name: Build dependencies
shell: bash
run: yarn workspace @selfxyz/common build
- name: Build web app
run: yarn workspace @selfxyz/mobile-app web:build