Make sure CI doesn't trigger updates to yarn.lock files (#1288)

* Make sure CI doesn't trigger updates to yarn.lock files

* Apply formatting changes

* Create cuddly-readers-warn.md

* Apply formatting changes
This commit is contained in:
Justin Halsall
2026-04-01 12:00:00 +08:00
committed by GitHub
parent 8f03b3ae2a
commit 515274f22b
2 changed files with 4 additions and 2 deletions

View File

@@ -0,0 +1,2 @@
---
---

View File

@@ -65,7 +65,7 @@ jobs:
node-version: 16
cache: 'yarn'
- name: Install Dependencies
run: yarn
run: yarn install --frozen-lockfile
- name: Prettier Check
run: yarn prettier --check '**/*.{ts,md}'
@@ -85,7 +85,7 @@ jobs:
node-version: 16
cache: 'yarn'
- name: Install Dependencies
run: yarn
run: yarn install --frozen-lockfile
- name: Prettify Code
run: yarn prettier --write '**/*.{ts,md}'
- name: Commit Changes