We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e8a8457 commit d3877b9Copy full SHA for d3877b9
.github/workflows/test.yml
@@ -19,6 +19,7 @@ jobs:
19
with:
20
node-version: ${{ matrix.node }}
21
cache: npm
22
+ - run: yarn install
23
- name: Cache node modules
24
id: cache-nodemodules
25
uses: actions/cache@v3
@@ -27,7 +28,6 @@ jobs:
27
28
29
path: "**/node_modules"
30
key: ${{ runner.os }}-node${{ matrix.node }}-build-${{ env.cache-name }}-${{ hashFiles('yarn.lock') }}
- - run: yarn install
31
if: ${{ steps.cache-nodemodules.outputs.cache-hit != 'true' }}
32
- run: yarn run renderTemplates
33
- run: yarn build:lib
0 commit comments