|
@@ -38,4 +38,16 @@ jobs:
|
|
|
path: ${{ steps.yarn-cache-dir-path.outputs.dir }}
|
|
|
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }}
|
|
|
restore-keys: |
|
|
|
- ${{ runner.os }}-yarn-
|
|
|
+ ${{ runner.os }}-yarn-
|
|
|
+
|
|
|
+ - name: Install Dependencies
|
|
|
+ if: steps.npm-cache.outputs.cache-hit != 'true'
|
|
|
+ run: npm install
|
|
|
+
|
|
|
+ - name: Install Dependencies
|
|
|
+ if: steps.yarn-cache.outputs.cache-hit != 'true'
|
|
|
+ run: yarn --frozen-lockfile
|
|
|
+
|
|
|
+ - name: Build
|
|
|
+ run: |
|
|
|
+ yarn build
|