mirror of
https://github.com/selfxyz/self.git
synced 2026-01-10 07:08:10 -05:00
* refactor confirm screen * refactor * setup animations and confirm-identification screen * linty * fix jest tests * reverse attempts to fix web build. skip web build for now since its not used anyway * dont code split in a library * cleanup config for build based on what is actually used in sdk
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@v4
|
|
- 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
|