Skip to content

update workflows

update workflows #290

Workflow file for this run

name: iOS
on:
push:
branches:
- master
- fix-ci
pull_request:
paths:
- ".github/workflows/ios.yml"
- "src/**"
- "ios/**"
- "MMKV/**"
jobs:
build:
runs-on: macos-latest
steps:
- uses: actions/checkout@v2
- name: Use Node.js
uses: actions/setup-node@v1
with:
node-version: 14.x
- run: |
npm ci

Check failure on line 23 in .github/workflows/ios.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/ios.yml

Invalid workflow file

You have an error in your yaml syntax on line 23
npm run build
rm -rf node_modules
- run: yarn
working-directory: example
- run: xcode-select -p
- run: pod install
working-directory: example/ios
name: Install pod dependencies
- name: Build iOS (debug)
working-directory: example/ios
run: "xcodebuild \
-workspace example.xcworkspace \
-scheme example \
clean archive \
-sdk iphonesimulator \
-configuration Debug \
-UseModernBuildSystem=YES \
CODE_SIGNING_ALLOWED=NO"