diff --git a/.github/ISSUE_TEMPLATE/1-bug-report.md b/.github/ISSUE_TEMPLATE/1-bug-report.md
deleted file mode 100644
index 79d6003..0000000
--- a/.github/ISSUE_TEMPLATE/1-bug-report.md
+++ /dev/null
@@ -1,44 +0,0 @@
----
-name: 🐞 Bug report
-about: File a bug/issue
-title: '[BUG]
'
-labels: 'bug-report'
-assignees: 'njfamirm'
----
-
-
-
-### Current Behavior
-
-
-
-### Expected Behavior
-
-
-
-### Steps To Reproduce
-
-
-
-### Environment
-
-
-
-### Anything else
-
-
diff --git a/.github/ISSUE_TEMPLATE/2-feature-request.md b/.github/ISSUE_TEMPLATE/2-feature-request.md
deleted file mode 100644
index 0a387f5..0000000
--- a/.github/ISSUE_TEMPLATE/2-feature-request.md
+++ /dev/null
@@ -1,23 +0,0 @@
----
-name: '💡 Feature request'
-about: 'Request new features or options. Please search for existing issues first. Also see CONTRIBUTING.'
-title: '[FR] '
-labels: 'feature-request'
-assignees: 'njfamirm'
----
-
-## Please Describe The Problem To Be Solved
-
-
-
-## Suggest A Solution (Optional)
-
-
diff --git a/.github/ISSUE_TEMPLATE/config.yml b/.github/ISSUE_TEMPLATE/config.yml
deleted file mode 100644
index fb027d7..0000000
--- a/.github/ISSUE_TEMPLATE/config.yml
+++ /dev/null
@@ -1,9 +0,0 @@
-blank_issues_enabled: true
-contact_links:
- - name: Discussions
- url: https://github.com/AliMD/alwatr/discussions
- about: Please ask and answer questions here.
-
- - name: Contact up
- url: 'https://t.me/AlwatrSupport'
- about: Direct contact to Alwatr support team at Telegram.
diff --git a/.github/pull_request_template.md b/.github/pull_request_template.md
deleted file mode 100644
index ab55d8b..0000000
--- a/.github/pull_request_template.md
+++ /dev/null
@@ -1,3 +0,0 @@
-## Description
-
-
diff --git a/.github/workflows/publish-npm.yml b/.github/workflows/publish-npm.yml
index 7f7d551..f442818 100644
--- a/.github/workflows/publish-npm.yml
+++ b/.github/workflows/publish-npm.yml
@@ -29,9 +29,22 @@ jobs:
- name: 🏗 Setup nodejs
uses: actions/setup-node@v4.0.0
with:
- node-version: ${{env.NODE_VERSION}}
- registry-url: https://registry.npmjs.org/
- cache: yarn
+ node-version: ${{ env.NODE_VERSION }}
+
+ - name: 🏗 Setup nodejs corepack
+ run: corepack enable
+
+ - name: 🏗 Get yarn config
+ id: yarn_config
+ run: echo "cache_folder=$(yarn config get cacheFolder)" >> $GITHUB_OUTPUT
+
+ - uses: actions/cache@v3.3.2
+ # id: yarn_cache # use this to check for `cache-hit` (`steps.yarn-cache.outputs.cache-hit != 'true'`)
+ with:
+ path: ${{ steps.yarn_config.outputs.cache_folder }}
+ key: ${{ runner.os }}-yarn-${{ hashFiles('yarn.lock') }}
+ restore-keys: |
+ ${{ runner.os }}-yarn-
- name: 🏗 Install dependencies
run: yarn install --immutable