diff --git a/.github/workflows/element-call.yaml b/.github/workflows/element-call.yaml index 92893404..8db88b14 100644 --- a/.github/workflows/element-call.yaml +++ b/.github/workflows/element-call.yaml @@ -30,7 +30,7 @@ jobs: cache: "yarn" node-version-file: ".node-version" - name: Install dependencies - run: "yarn install" + run: "yarn install --frozen-lockfile" - name: Build run: "yarn run build" env: diff --git a/.github/workflows/lint.yaml b/.github/workflows/lint.yaml index d9367626..c65fb92e 100644 --- a/.github/workflows/lint.yaml +++ b/.github/workflows/lint.yaml @@ -14,7 +14,7 @@ jobs: cache: "yarn" node-version-file: ".node-version" - name: Install dependencies - run: "yarn install" + run: "yarn install --frozen-lockfile" - name: Prettier run: "yarn run prettier:check" - name: i18n diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index a0579e4a..05f4224a 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -16,7 +16,7 @@ jobs: cache: "yarn" node-version-file: ".node-version" - name: Install dependencies - run: "yarn install" + run: "yarn install --frozen-lockfile" - name: Vitest run: "yarn run test:coverage" - name: Upload to codecov