mirror of
https://github.com/selfxyz/self.git
synced 2026-01-10 07:08:10 -05:00
27 lines
557 B
YAML
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
|