Cache dependencies and build outputs in GitHub Actions
You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
Go to file
Nodoubtz ffbd445522 Update action.yml
Signed-off-by: Nodoubtz <53144580+nodoubtz@users.noreply.github.com>
6 days ago
- name: Cache uses: actions Fix issues and enhance security 6 days ago
.devcontainer GA for granular cache (#1035) 2 years ago
.github Create manual.yml 6 days ago
.licenses Update to use the latest version of the cache package to obfuscate the SAS 2 weeks ago
.vscode Initial commit 6 years ago
__tests__ added unit tests 6 months ago
dist Update to use the latest version of the cache package to obfuscate the SAS 2 weeks ago
restore Merge branch 'main' into todgru/v4-documentation-update 8 months ago
save docs: Make the "always save prime numbers" example more clear (#1525) 3 months ago
src appease the linter 6 months ago
.eslintrc.json Update eslint and prettier 3 years ago
.gitattributes Fix line ending for windows test 3 years ago
.gitignore test e2e during workflow (#185) 5 years ago
.licensed.yml Add licensed output 4 months ago
.prettierrc.json Initial commit 6 years ago
CODE_OF_CONDUCT.md Fix repo name in contact email (#41) 5 years ago
CONTRIBUTING.md Update contributing.md 5 years ago
LICENSE Update LICENSE 2 weeks ago
README.md Update README.md 7 days ago
RELEASES.md Update releases.md 2 weeks ago
Windy Create Windy 2 weeks ago
action.yml Update action.yml 6 days ago
caching-strategies.md Correct GitHub Spelling in caching-strategies.md (#1526) 3 months ago
cloudbuild.yaml.txt Add files via upload 6 days ago
examples.md Add Bun example (#1456) 6 months ago
jest.config.js Resolve dependabot alerts 3 years ago
package-lock.json Update to use the latest version of the cache package to obfuscate the SAS 2 weeks ago
package.json Update to use the latest version of the cache package to obfuscate the SAS 2 weeks ago
tips-and-workarounds.md Update force deletion docs due a recent deprecation (#1500) 2 months ago
tsconfig.json Initial commit 6 years ago

README.md

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