-
-
Notifications
You must be signed in to change notification settings - Fork 1.3k
61 lines (58 loc) · 1.85 KB
/
babel-plugin-static-check.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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
name: Babel plugin static check
env:
YARN_ENABLE_HARDENED_MODE: 0
on:
pull_request:
paths:
- '.github/workflows/babel-plugin-static-check.yml'
- 'packages/react-native-reanimated/plugin/**'
merge_group:
branches:
- main
push:
branches:
- main
paths:
- '.github/workflows/babel-plugin-static-check.yml'
- 'packages/react-native-reanimated/plugin/**'
workflow_call:
workflow_dispatch:
jobs:
check:
if: github.repository == 'software-mansion/react-native-reanimated'
runs-on: ubuntu-latest
concurrency:
group: plugin-${{ github.ref }}
cancel-in-progress: true
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Use Node.js
uses: actions/setup-node@v4
with:
cache: 'yarn'
- name: Clear annotations
run: .github/workflows/helper/clear-annotations.sh
- name: Install monorepo dependencies
run: yarn install --immutable
- name: Build Reanimated
working-directory: packages/react-native-reanimated
run: yarn build
- name: Diff
id: diff
run: git update-index --refresh && git diff-index --quiet HEAD --
- name: Show diff
if: failure() && steps.diff.outcome == 'failure'
run: git diff
- name: Check types
working-directory: packages/react-native-reanimated
run: yarn type:check:plugin
- name: Lint and format
working-directory: packages/react-native-reanimated
run: yarn lint:plugin
- name: Test
working-directory: packages/react-native-reanimated
run: yarn jest plugin
- name: Check Example App bundling
working-directory: apps/paper-example
run: yarn && yarn react-native bundle --reset-cache --entry-file='App.tsx' --bundle-output='/dev/null' --dev=true --platform='ios'