Add build ios action
This commit is contained in:
parent
7f497650fa
commit
5ee440040f
|
@ -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
|
|
@ -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
|
||||||
|
|
|
@ -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",
|
||||||
|
|
Loading…
Reference in New Issue