name: Setup runs: using: composite steps: - name: Install node uses: actions/setup-node@v1 with: node-version: 16.15.0 - name: Cache uses: actions/cache@v2 id: cache with: path: '**/node_modules' key: yarn-v1-${{ runner.os }}-${{ hashFiles('**/yarn.lock') }} - name: Install run: yarn --immutable shell: bash if: steps.cache.outputs.cache-hit != 'true'