We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e0a7b46 commit d2ed2f8Copy full SHA for d2ed2f8
.github/workflows/ci.yml
@@ -17,6 +17,16 @@ jobs:
17
uses: actions/setup-node@v1
18
with:
19
node-version: 14.x
20
+ - name: Get yarn cache path
21
+ id: yarn-cache-path
22
+ run: echo "::set-output name=dir::$(yarn cache dir)"
23
+ - uses: actions/cache@v2
24
+ id: yarn-cache
25
+ with:
26
+ path: ${{ steps.yarn-cache-path.outputs.dir }}
27
+ key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }}
28
+ restore-keys: |
29
+ ${{ runner.os }}-yarn
30
- run: yarn
31
- run: touch .env
32
- run: yarn l10n:generate
0 commit comments