-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #20 from department-of-veterans-affairs/chore/6865…
…-app-build-workflow Adding workflow to run checks against the VA Mobile App
- Loading branch information
Showing
1 changed file
with
57 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,57 @@ | ||
# | ||
# Checking instances where we're integrating with apps | ||
# | ||
|
||
name: 'Check Component Integrations' | ||
|
||
on: | ||
push: | ||
branches: | ||
- main | ||
|
||
jobs: | ||
check-integrations: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Checkout (va-mobile-library) | ||
id: clone-lib | ||
uses: actions/checkout@v4 | ||
with: | ||
path: va-mobile-library | ||
|
||
- name: Checkout (va-mobile-app) | ||
id: clone-app | ||
uses: actions/checkout@v4 | ||
with: | ||
repository: department-of-veterans-affairs/va-mobile-app | ||
ref: 'develop' | ||
path: va-mobile-app | ||
|
||
- name: Install dependencies (va-mobile-library) | ||
working-directory: va-mobile-library | ||
run: yarn install --immutable | ||
|
||
- name: Install token dependencies (va-mobile-library) | ||
working-directory: va-mobile-library/packages/tokens | ||
run: yarn install --immutable | ||
|
||
- name: Install component dependencies (va-mobile-library) | ||
working-directory: va-mobile-library/packages/components | ||
run: yarn install --immutable | ||
|
||
- name: Install dependencies (va-mobile-app) | ||
working-directory: va-mobile-app/VAMobile | ||
run: yarn install | ||
|
||
- name: Install local component library | ||
working-directory: va-mobile-app | ||
run: yarn add file:../va-mobile-library/packages/components | ||
|
||
- name: Compile TypeScript (va-mobile-app) | ||
working-directory: va-mobile-app/VAMobile | ||
run: yarn tsc:compile | ||
|
||
- name: Run Unit Tests (va-mobile-app) | ||
working-directory: va-mobile-app/VAMobile | ||
run: yarn test --testTimeout=30000 |