diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 0d2e48a..120dd92 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -25,21 +25,10 @@ jobs: bundler-cache: true - name: Install node_modules - shell: bash run: | set -euxo pipefail yarn install --frozen-lockfile - - name: Run eslint - run: | - set -euxo pipefail - yarn lint - - - name: Run tests - run: | - set -euxo pipefail - yarn test - - name: Cache Pods uses: actions/cache@v4 id: pods-cache @@ -55,14 +44,22 @@ jobs: set -euxo pipefail bundle exec pod install + - name: Run eslint + run: | + set -euxo pipefail + yarn lint + + - name: Run tests + run: | + set -euxo pipefail + yarn test + - name: Build iOS - working-directory: ios run: | set -euxo pipefail yarn build-ios - name: Build Android - working-directory: ios run: | set -euxo pipefail yarn build-android