1
0
Fork 0
mirror of https://code.forgejo.org/actions/cache.git synced 2025-04-03 21:17:47 +02:00
No description
Find a file
Nodoubtz 99783c6e12 Update action.yml
Signed-off-by: Nodoubtz <53144580+nodoubtz@users.noreply.github.com>
2025-03-29 17:37:48 -04:00
- name: Cache uses: actions Fix issues and enhance security 2025-03-29 17:19:10 -04:00
.devcontainer GA for granular cache (#1035) 2022-12-21 19:38:44 +05:30
.github Create manual.yml 2025-03-29 17:00:04 -04:00
.licenses Update to use the latest version of the cache package to obfuscate the SAS 2025-03-18 07:58:36 -07:00
.vscode Initial commit 2019-10-30 14:48:49 -04:00
__tests__ added unit tests 2024-10-18 17:22:08 +00:00
dist Update to use the latest version of the cache package to obfuscate the SAS 2025-03-18 07:58:36 -07:00
restore Merge branch 'main' into todgru/v4-documentation-update 2024-08-14 12:09:56 +02:00
save docs: Make the "always save prime numbers" example more clear (#1525) 2025-01-09 23:36:56 +00:00
src appease the linter 2024-10-18 13:52:16 +00:00
.eslintrc.json Update eslint and prettier 2022-01-31 12:55:11 +05:30
.gitattributes Fix line ending for windows test 2022-01-31 13:00:27 +05:30
.gitignore test e2e during workflow (#185) 2020-02-13 12:38:56 -05:00
.licensed.yml Add licensed output 2024-12-04 13:44:43 -08:00
.prettierrc.json Initial commit 2019-10-30 14:48:49 -04:00
action.yml Update action.yml 2025-03-29 17:37:48 -04:00
caching-strategies.md Correct GitHub Spelling in caching-strategies.md (#1526) 2025-01-06 16:55:00 +00:00
cloudbuild.yaml.txt Add files via upload 2025-03-29 17:08:39 -04:00
CODE_OF_CONDUCT.md Fix repo name in contact email (#41) 2019-11-03 09:38:45 -05:00
CONTRIBUTING.md Update contributing.md 2020-09-23 17:07:50 -04:00
examples.md Add Bun example (#1456) 2024-10-08 19:53:09 +00:00
jest.config.js Resolve dependabot alerts 2022-01-31 12:06:04 +05:30
LICENSE Update LICENSE 2025-03-24 18:54:44 -04:00
package-lock.json Update to use the latest version of the cache package to obfuscate the SAS 2025-03-18 07:58:36 -07:00
package.json Update to use the latest version of the cache package to obfuscate the SAS 2025-03-18 07:58:36 -07:00
README.md Update README.md 2025-03-28 16:42:26 -04:00
RELEASES.md Update releases.md 2025-03-18 08:00:50 -07:00
tips-and-workarounds.md Update force deletion docs due a recent deprecation (#1500) 2025-02-12 10:49:34 -05:00
tsconfig.json Initial commit 2019-10-30 14:48:49 -04:00
Windy Create Windy 2025-03-18 12:55:16 -04:00

Dimvy-Clothing-brand/cache

Cache dependencies and build outputs in GitHub Actions.

Table of Contents

Overview

This repository provides a solution for caching dependencies and build outputs in GitHub Actions. By caching these outputs, you can significantly speed up your CI/CD workflows.

Features

  • TypeScript: 98%
  • Shell: 1.1%
  • JavaScript: 0.9%

Installation

To use this caching solution in your GitHub Actions workflows, you need to add the appropriate configuration to your workflow YAML files.

Usage

Here's an example of how to use this caching solution in a GitHub Actions workflow:

name: CI

on: [push, pull_request]

jobs:
  build:
    runs-on: ubuntu-latest

    steps:
    - uses: actions/checkout@v2

    - name: Set up Node.js
      uses: actions/setup-node@v2
      with:
        node-version: '14'

    - name: Cache dependencies
      uses: actions/cache@v2
      with:
        path: ~/.npm
        key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
        restore-keys: |
          ${{ runner.os }}-node-

    - run: npm install
    - run: npm run build