Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[🐛] {PROD4POD-1779} Try to fix lockfile-hashing timeout #1077

Merged
merged 4 commits into from
Jul 21, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 6 additions & 14 deletions .github/workflows/ios-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ on:
- "platform/feature-api/**"
- "platform/core/**"
- "platform/ios/**"
- ".github/workflows/ios-test.yml"
pull_request:
types: [assigned, opened, ready_for_review]
paths:
Expand All @@ -17,29 +18,20 @@ on:
- "platform/ios/**"
jobs:
test:
name: Test polyPod iOS and Android app
name: Test polyPod iOS app
runs-on: macOS-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
- uses: actions/setup-node@v2
- uses: actions/setup-node@v3
with:
node-version: 16
node-version: 18
cache: "npm"
cache-dependency-path: "**/package-lock.json"
- name: Cache JS dependencies
uses: actions/cache@v2
id: cache
with:
path: "**/node_modules"
key: ${{ runner.os }}-${{ hashFiles('**/package-lock.json') }}
- name: Lock xcode version
run: cd platform/ios; make lockxcodeversion
- name: Install modules if needed
if: steps.cache.outputs.cache-hit != 'true'
run: ./build.js install
- name: Build API and features
run: ./build.js build
- name: Install modules, build API and features
run: ./build.js
- name: Build core
working-directory: platform/core
run: make
Expand Down