From a4d16b3fb02ef8379ac9e9d299625af9669a0be4 Mon Sep 17 00:00:00 2001 From: Tom - Henry Coursow Date: Thu, 27 Jul 2023 17:29:40 +0200 Subject: [PATCH] =?UTF-8?q?.gitea/actions/cached-deps-js/action.yml=20gel?= =?UTF-8?q?=C3=B6scht?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .gitea/actions/cached-deps-js/action.yml | 24 ------------------------ 1 file changed, 24 deletions(-) delete mode 100644 .gitea/actions/cached-deps-js/action.yml diff --git a/.gitea/actions/cached-deps-js/action.yml b/.gitea/actions/cached-deps-js/action.yml deleted file mode 100644 index 954fa9a..0000000 --- a/.gitea/actions/cached-deps-js/action.yml +++ /dev/null @@ -1,24 +0,0 @@ -name: 'Get & Cache Dependencies' -description: 'Get the Dependencies from the cache for a (npm) Node JS Project or initialize the cache for it' - -runs: - using: 'composite' # Must be 'composite' for a custom composite action - steps: - - uses: actions/setup-go@v3 - with: - go-version: '1.20' - - uses: actions/go-hashfiles@v0.0.1 - id: get-cache-hash - with: - patterns: |- - **/package-lock.json - - name: Cache dependencies - id: cache - uses: actions/cache@v3 - with: - path: node_modules - key: deps-node-modules-${{ steps.get-cache-hash.outputs.hash }} - - name: Install dependencies - if: steps.cache.outputs.cache-hit != 'true' - run: npm ci - shell: bash # compared to workflow ymls... Action ymls require the 'shell' property when a 'run' property was used! \ No newline at end of file