Skip to content

Merge pull request #23 from PKrystian/hex-v-0.1 #59

Merge pull request #23 from PKrystian/hex-v-0.1

Merge pull request #23 from PKrystian/hex-v-0.1 #59

Workflow file for this run

name: React Native CI/CD
on:
pull_request:
branches:
- main
push:
branches:
- main
jobs:
ci_cd_pipeline:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: '20'
- name: Install dependencies
run: npm install
- name: Run unit tests
run: echo "TODO add unit tests"
- name: Build and test Android
run: echo "TODO add tests for Android"
- name: Build and test iOS
run: echo "TODO add tests for iOS"
- name: Build and test Web
run: echo "TODO add tests for Web"
- name: Check code structure and readability
run: npm run lint