Skip to content

create native module for ios and android. import expo-share-intent-de… #1

create native module for ios and android. import expo-share-intent-de…

create native module for ios and android. import expo-share-intent-de… #1

Workflow file for this run

# This workflow will do a clean install of node dependencies, build the source code and run tests across different versions of node
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions
name: React Native CI for PR
on:
pull_request:
branches: main
jobs:

Check failure on line 10 in .github/workflows/pr.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/pr.yml

Invalid workflow file

You have an error in your yaml syntax on line 10
install-test-plugin:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: "18.x"
registry-url: "https://registry.npmjs.org"
- run: yarn install --immutable
- run: yarn prepare
install-test-example-basic:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: "18.x"
registry-url: "https://registry.npmjs.org"
- run: cd example/expo-router
- run: yarn install --immutable
- run: yarn lint
- run: yarn prebuild
install-test-example-expo-router:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: "18.x"
registry-url: "https://registry.npmjs.org"
- run: cd example/basic
- run: yarn install --immutable
- run: yarn lint
- run: yarn prebuild