fix: turn off build IDs for reproducibility #1739
Workflow file for this run
This file contains hidden or 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: Monorepo static checks | |
env: | |
YARN_ENABLE_HARDENED_MODE: 0 | |
on: | |
pull_request: | |
paths-ignore: | |
- packages/ | |
- apps/ | |
merge_group: | |
branches: | |
- main | |
push: | |
branches: | |
- main | |
paths-ignore: | |
- packages/ | |
- apps/ | |
workflow_call: | |
workflow_dispatch: | |
jobs: | |
monorepo-static-checks: | |
if: github.repository == 'software-mansion/react-native-reanimated' | |
runs-on: ubuntu-latest | |
concurrency: | |
group: monorepo-static-checks-${{ github.ref }} | |
cancel-in-progress: true | |
steps: | |
# Setup VM | |
- name: checkout | |
uses: actions/checkout@v4 | |
- name: Use Node.js | |
uses: actions/setup-node@v4 | |
with: | |
cache: 'yarn' | |
# Setup repo | |
- name: Install dependencies | |
run: yarn install --immutable | |
# Checks | |
- name: Lint | |
run: yarn lint:root |