diff --git a/.github/workflows/buid.yaml b/.github/workflows/buid.yaml index 84d28e4..a1d1a0d 100644 --- a/.github/workflows/buid.yaml +++ b/.github/workflows/buid.yaml @@ -47,15 +47,13 @@ jobs: uses: actions/setup-node@v3 with: node-version: 16.13 - #cache: 'yarn' - #cache-dependency-path: yarn.lock + cache: 'yarn' + cache-dependency-path: yarn.lock - name: Build run: | - yarn cache clean yarn config set strict-ssl false - rm -rf yarn.lock - yarn install + yarn install --frozen-lockfile yarn run build-with-args true - name: Compress diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 9a06a53..e44527b 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -47,10 +47,8 @@ jobs: - name: Build run: | - yarn cache clean yarn config set strict-ssl false - rm -rf yarn.lock - yarn install + yarn install --frozen-lockfile yarn run build-with-args true - name: Compress diff --git a/.github/workflows/unit-test.yml b/.github/workflows/unit-test.yml index bc5a7cd..faede6b 100644 --- a/.github/workflows/unit-test.yml +++ b/.github/workflows/unit-test.yml @@ -31,9 +31,7 @@ jobs: - name: Install dependencies run: | - yarn cache clean yarn config set strict-ssl false - rm -rf yarn.lock yarn install --frozen-lockfile - name: Unit test