From 3b46b33e3cad9ef3f3016c950de69f91cfc77816 Mon Sep 17 00:00:00 2001 From: Timotei Date: Wed, 11 Sep 2024 19:05:04 +0300 Subject: [PATCH] Fixes --- .github/workflows/ci.yml | 7 ++++++- composer.json | 1 + 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 10343649f..2480a94d3 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -44,7 +44,12 @@ jobs: cache: npm cache-dependency-path: package-lock.json - - run: npm ci + # Make sure .cache folder exists + - name: 'Create folder .cache s' + run: | + mkdir -p .cache && cd .cache && touch .gitkeep + # Start actions + - run: npm ci - run: composer run sniff-check - run: npm run format-check diff --git a/composer.json b/composer.json index b56125644..8716d1e5d 100644 --- a/composer.json +++ b/composer.json @@ -1,4 +1,5 @@ { + "name": "litespeedtech/lscache_wp", "require-dev": { "squizlabs/php_codesniffer": "*", "phpcompatibility/php-compatibility": "*"