feat(opt): Reduce array cloning by initializing refcounts to 0, not 1 #13852
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: Lockfile check | |
on: | |
pull_request: | |
# This will cancel previous runs when a branch or PR is updated | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.head_ref || github.ref || github.run_id }} | |
cancel-in-progress: true | |
jobs: | |
yarn-lock: | |
runs-on: ubuntu-latest | |
timeout-minutes: 30 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
# Errors if installation would result in modifications to yarn.lock | |
- name: Install | |
run: yarn --immutable | |
shell: bash |