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
2023-08-14 11:33:24 +02:00
committed by GitHub
parent 3119e0d1d8
commit f1b8e855b1
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