mirror of
https://github.com/callstack/react-native-testing-library.git
synced 2026-09-18 23:09:04 +08:00
3ba3242c0f
Co-authored-by: Cursor Agent <cursoragent@cursor.com>
28 lines
839 B
YAML
28 lines
839 B
YAML
name: Setup deps
|
|
description: Setup Node.js and install dependencies
|
|
|
|
runs:
|
|
using: composite
|
|
steps:
|
|
- name: Setup Node.js
|
|
uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4.4.0
|
|
with:
|
|
node-version-file: .nvmrc
|
|
|
|
- name: Cache deps
|
|
id: yarn-cache
|
|
uses: actions/cache@5a3ec84eff668545956fd18022155c47e93e2684 # v4.2.3
|
|
with:
|
|
path: |
|
|
./node_modules
|
|
.yarn/install-state.gz
|
|
key: ${{ runner.os }}-yarn-${{ hashFiles('yarn.lock') }}-${{ hashFiles('**/package.json', '!node_modules/**') }}
|
|
restore-keys: |
|
|
${{ runner.os }}-yarn-${{ hashFiles('yarn.lock') }}
|
|
${{ runner.os }}-yarn-
|
|
|
|
- name: Install deps
|
|
if: steps.yarn-cache.outputs.cache-hit != 'true'
|
|
run: yarn install --immutable
|
|
shell: bash
|