Skip to content

Reorder checks in getInlinePropsUpdate and remove transform-specific syntax #48

Reorder checks in getInlinePropsUpdate and remove transform-specific syntax

Reorder checks in getInlinePropsUpdate and remove transform-specific syntax #48

name: Build/test NextExample
on:
pull_request:
paths:
- .github/workflows/build-next-example.yml
- 'src/**'
- 'NextExample/**'
push:
branches:
- master
jobs:
check:
runs-on: ubuntu-latest
concurrency:
group: build-next-example-${{ github.ref }}
cancel-in-progress: true
steps:
- name: Checkout Git repository
uses: actions/checkout@v3
- name: Install Reanimated node_modules
run: yarn install --frozen-lockfile
- name: Install NextExample node_modules
working-directory: NextExample
run: yarn install --frozen-lockfile
- name: Compile production build
working-directory: NextExample
run: yarn build
- name: Run e2e tests
working-directory: NextExample
run: yarn e2e:headless