Migrate to yarn3 #908
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Validate plugin | |
env: | |
YARN_ENABLE_HARDENED_MODE: 0 | |
on: | |
pull_request: | |
paths: | |
- '.github/workflows/validate-plugin.yml' | |
- 'plugin/**' | |
merge_group: | |
branches: | |
- main | |
push: | |
branches: | |
- main | |
paths: | |
- '.github/workflows/validate-plugin.yml' | |
- 'plugin/**' | |
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: scripts/clear-annotations.sh | |
- name: Install node dependencies | |
run: yarn install && yarn build | |
- name: Check types | |
working-directory: plugin | |
run: yarn type:check:src | |
- name: Lint and format | |
working-directory: plugin | |
run: yarn lint | |
- 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: Test | |
run: yarn jest plugin | |
- name: Check Example App bundling | |
working-directory: Example | |
run: yarn && yarn react-native bundle --reset-cache --entry-file='App.tsx' --bundle-output='/dev/null' --dev=true --platform='ios' |