Summary: Pull Request resolved: https://github.com/facebook/yoga/pull/1512 Latest revision either never got exported, or didn't block land? Fix the typo. Reviewed By: joevilches Differential Revision: D52087122 fbshipit-source-id: 2dfcff4925902bdd1dd210a219a78707186fd28e
11 lines
339 B
YAML
11 lines
339 B
YAML
name: Cache the installed copy of emsdk and its build artifacts
|
|
|
|
runs:
|
|
using: "composite"
|
|
steps:
|
|
- name: Cache emsdk
|
|
uses: actions/cache@v3
|
|
with:
|
|
path: javascript/.emsdk
|
|
key: emsdk-${{ runner.os }}-${{ runner.arch }}-${{ hashFiles('yarn.lock', 'javascript/package.json', 'javascript/just.config.cjs')}}
|