* Test: Rename a used prop

* Use `github-check` reporter

* Also output to CI

* Update validate-js.yml

* Update validate-js.yml

* Update validate-js.yml

* Revert "Test: Rename a used prop"

This reverts commit 266b2716ea591a1e826279c1f573870bee3b13e5.

* Run tsc and lint in parallel

* Flatten `CameraProps` into single `interface`

* Type NativeCameraViewProps

* Fix native method typings

* Force `as any` for now
This commit is contained in:
Marc Rousavy
2021-03-12 13:21:46 +01:00
committed by GitHub
parent d85126d883
commit 33483cba94
4 changed files with 122 additions and 113 deletions

View File

@@ -19,15 +19,12 @@ on:
- '*.lock'
jobs:
vibe_check:
name: Validate JS (tsc, eslint, prettier)
compile:
name: Compile JS (tsc)
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Install reviewdog
uses: reviewdog/action-setup@v1
- name: Get yarn cache directory path
id: yarn-cache-dir-path
run: echo "::set-output name=dir::$(yarn cache dir)"
@@ -46,9 +43,30 @@ jobs:
run: yarn install --frozen-lockfile --cwd example
- name: Run TypeScript
run: yarn typescript | reviewdog -f=tsc -reporter=github-pr-review -fail-on-error
env:
REVIEWDOG_GITHUB_API_TOKEN: ${{ secrets.GITHUB_TOKEN }}
uses: ypresto/typescript-error-reporter-action@6cb6a970f0783c19f55fb83079f7846a583c7543
lint:
name: Lint JS (eslint, prettier)
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Get yarn cache directory path
id: yarn-cache-dir-path
run: echo "::set-output name=dir::$(yarn cache dir)"
- name: Restore node_modules from cache
uses: actions/cache@v2
id: yarn-cache
with:
path: ${{ steps.yarn-cache-dir-path.outputs.dir }}
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }}
restore-keys: |
${{ runner.os }}-yarn-
- name: Install node_modules
run: yarn install --frozen-lockfile
- name: Install node_modules (example/)
run: yarn install --frozen-lockfile --cwd example
- name: Run ESLint
uses: reviewdog/action-eslint@v1
@@ -56,3 +74,4 @@ jobs:
reporter: github-pr-review
eslint_flags: '--ext .js,.ts,.jsx,.tsx src'
fail_on_error: true
filter_mode: nofilter