diff --git a/.github/workflow/linter.yml b/.github/workflows/build.yml similarity index 51% rename from .github/workflow/linter.yml rename to .github/workflows/build.yml index aa7c9bb..cc10f8d 100644 --- a/.github/workflow/linter.yml +++ b/.github/workflows/build.yml @@ -1,13 +1,13 @@ -name: Linter +name: Build on: push jobs: - super-lint: - name: Lint - runs-on: ubuntu-latest + build-ios: + name: build-ios + runs-on: macos-latest steps: - name: Checkout uses: actions/checkout@v2 - name: Install modules run: yarn - - name: Lint - run: yarn lint \ No newline at end of file + - name: Bootstrap + run: yarn bootstrap \ No newline at end of file diff --git a/.github/workflows/linter.yml b/.github/workflows/linter.yml index aa7c9bb..217db5c 100644 --- a/.github/workflows/linter.yml +++ b/.github/workflows/linter.yml @@ -1,8 +1,8 @@ name: Linter on: push jobs: - super-lint: - name: Lint + eslint: + name: ESLint runs-on: ubuntu-latest steps: - name: Checkout diff --git a/package.json b/package.json index 3a9c54d..0162bc0 100644 --- a/package.json +++ b/package.json @@ -14,6 +14,7 @@ "scripts": { "test": "jest", "lint": "yarn eslint -c .eslintrc.js", + "build:ios": "", "start": "watchman watch-del-all && node node_modules/react-native/local-cli/cli.js start", "example": "yarn --cwd example", "pods": "cd example && pod-install --quiet",