Add build ios action

This commit is contained in:
Aaron Grider 2020-10-24 16:45:36 -07:00
parent 7f497650fa
commit 5ee440040f
3 changed files with 9 additions and 8 deletions

View File

@ -1,13 +1,13 @@
name: Linter name: Build
on: push on: push
jobs: jobs:
super-lint: build-ios:
name: Lint name: build-ios
runs-on: ubuntu-latest runs-on: macos-latest
steps: steps:
- name: Checkout - name: Checkout
uses: actions/checkout@v2 uses: actions/checkout@v2
- name: Install modules - name: Install modules
run: yarn run: yarn
- name: Lint - name: Bootstrap
run: yarn lint run: yarn bootstrap

View File

@ -1,8 +1,8 @@
name: Linter name: Linter
on: push on: push
jobs: jobs:
super-lint: eslint:
name: Lint name: ESLint
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- name: Checkout - name: Checkout

View File

@ -14,6 +14,7 @@
"scripts": { "scripts": {
"test": "jest", "test": "jest",
"lint": "yarn eslint -c .eslintrc.js", "lint": "yarn eslint -c .eslintrc.js",
"build:ios": "",
"start": "watchman watch-del-all && node node_modules/react-native/local-cli/cli.js start", "start": "watchman watch-del-all && node node_modules/react-native/local-cli/cli.js start",
"example": "yarn --cwd example", "example": "yarn --cwd example",
"pods": "cd example && pod-install --quiet", "pods": "cd example && pod-install --quiet",