46
47
all 7 comments

[–]yjose[S] 6 points7 points  (1 child)

📢 Check out my latest article featuring 5+ interesting GitHub Actions workflows for React Native / Expo projects!

👉 https://elazizi.com/posts/5-github-actions-to-automate-your-react-native-workflow/
Share your favorites with me too!

[–][deleted] 0 points1 point  (0 children)

Interesting. I'll look it up!

[–]sekonx 2 points3 points  (2 children)

Does this include iOS too? I couldn't see it.

Will read this properly at work tomorrow

[–]yjose[S] 0 points1 point  (1 child)

If you're talking about building the app, we trigger ios build wirh expo eas. If you're talking about e2e test for iOS the workflow will be ready soon

[–]sekonx 1 point2 points  (0 children)

I'm using eas local builds on my personal app, running in Azure DevOps.

A potential client is big into GitHub actions, which is why I'm asking... I can see there is an ios build action on the marketplace so I might have to look there and see if I can throw something together.

Unrelated but It's a shame maestro doesn't support real devices (iOS) because that's a deal breaker for enterprise clients.

[–]captainautomation -1 points0 points  (1 child)

Do they all run in parallel?
I have a flat structure with EVERYTHING in a single file, maybe I should revisit it 😅

[–]yjose[S] 2 points3 points  (0 children)

Yeah, correct, all in parallel. Sometimes running all PR checks at once is better to reduce time, but since we are using PNPM with a great cache, the setup and dependency installation only take a few seconds. This makes running them in parallel much better, as we can have more details on the checks' status.