Skip to content

Commit

Permalink
chore: unify CI between platforms (#1676)
Browse files Browse the repository at this point in the history
## Description

Make `ios-build-test-fabric` workflow build `FabricTestExample` instead
of `FabricExample`

This is done to unify behaviour between platforms as
`android-build-test-fabric` builds `FabricTestExample`.

## Changes

Edited working directory of workflow.

## Checklist

- [x] Ensured that CI passes

(cherry picked from commit f8dfd27)
  • Loading branch information
kkafar committed Jan 6, 2023
1 parent 1372ff9 commit e113674
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ios-build-test-fabric.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ on:
- 'ios/**'
- 'common/**'
- 'src/fabric/**'
- 'FabricExample/**'
- 'FabricTestExample/**'
push:
branches:
- main
Expand All @@ -19,7 +19,7 @@ jobs:
build:
runs-on: macos-12
env:
WORKING_DIRECTORY: FabricExample
WORKING_DIRECTORY: FabricTestExample
concurrency:
group: ios-fabric-${{ github.ref }}
cancel-in-progress: true
Expand All @@ -32,7 +32,7 @@ jobs:
with:
node-version: 14
cache: 'yarn'
cache-dependency-path: 'FabricExample/yarn.lock'
cache-dependency-path: 'FabricTestExample/yarn.lock'

- name: Install node dependencies
working-directory: ${{ env.WORKING_DIRECTORY }}
Expand Down

0 comments on commit e113674

Please sign in to comment.