Files
self/.github/workflows/web.yml

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