-
-
Notifications
You must be signed in to change notification settings - Fork 982
39 lines (39 loc) · 1.1 KB
/
static-example-apps-checks.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
name: Test TypeScript and Lint
on:
pull_request:
paths:
- 'example/**'
- 'FabricExample/**'
push:
branches:
- main
workflow_dispatch:
jobs:
check:
if: github.repository == 'software-mansion/react-native-gesture-handler'
runs-on: ubuntu-latest
strategy:
matrix:
working-directory: [example, FabricExample]
concurrency:
group: typescript-${{ matrix.working-directory }}-${{ github.ref }}
cancel-in-progress: true
steps:
- name: checkout
uses: actions/checkout@v2
- name: Use Node.js 18
uses: actions/setup-node@v2
with:
node-version: 18
cache: 'yarn'
- name: Install root node dependencies
run: yarn
- name: Install ${{ matrix.working-directory }} app node dependencies
working-directory: ${{ matrix.working-directory }}
run: yarn
- name: Check types
working-directory: ${{ matrix.working-directory }}
run: yarn tsc --noEmit
- name: Lint
working-directory: ${{ matrix.working-directory }}
run: yarn lint-check