Flashcards
Challenges
← PawWalk Academy
hard
Dev Processes
#89
CI/CD with GitHub Actions for RN
Prompt
Write a GitHub Actions workflow that runs on PRs to main:
Installs dependencies (pnpm)
Runs linter
Runs tests
Runs EAS build (dry-run)
Hints
Show
Solution
Show
Your Code
15 min
Reset
Run
# .github/workflows/ci.yml name: RN CI on: pull_request: branches: [main] jobs: ci: runs-on: ubuntu-latest steps: # Your steps here
Tests
Click Run to test your code