2025-03-28 16:39:50 -04:00
# Dimvy-Clothing-brand/cache
2019-10-30 14:48:49 -04:00
2025-03-28 16:39:50 -04:00
Cache dependencies and build outputs in GitHub Actions.
2019-10-30 14:48:49 -04:00
2025-03-28 16:39:50 -04:00
## Table of Contents
2022-12-21 19:38:44 +05:30
2025-03-28 16:39:50 -04:00
- [Overview ](#overview )
- [Features ](#features )
- [Installation ](#installation )
- [Usage ](#usage )
- [Contributing ](#contributing )
- [License ](#license )
2019-10-31 10:37:00 -04:00
2025-03-28 16:39:50 -04:00
## Overview
2019-11-05 21:09:13 +02:00
2025-03-28 16:39:50 -04:00
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.
2019-11-05 21:09:13 +02:00
2025-03-28 16:39:50 -04:00
## Features
2023-01-12 12:00:47 +05:30
2025-03-28 16:39:50 -04:00
- **TypeScript**: 98%
- **Shell**: 1.1%
- **JavaScript**: 0.9%
2024-12-04 11:49:23 -08:00
2025-03-28 16:39:50 -04:00
## Installation
2024-12-04 11:49:23 -08:00
2025-03-28 16:39:50 -04:00
To use this caching solution in your GitHub Actions workflows, you need to add the appropriate configuration to your workflow YAML files.
2020-05-26 14:58:07 -04:00
2019-10-30 14:48:49 -04:00
## Usage
2025-03-28 16:39:50 -04:00
Here's an example of how to use this caching solution in a GitHub Actions workflow:
2019-10-30 14:48:49 -04:00
```yaml
2025-03-28 16:39:50 -04:00
name: CI
2019-10-30 14:48:49 -04:00
2025-03-28 16:39:50 -04:00
on: [push, pull_request]
2019-10-30 14:48:49 -04:00
jobs:
build:
runs-on: ubuntu-latest
2019-12-23 07:30:34 -08:00
2019-10-30 14:48:49 -04:00
steps:
2025-03-28 16:39:50 -04:00
- uses: actions/checkout@v2
2019-10-30 14:48:49 -04:00
2025-03-28 16:39:50 -04:00
- name: Set up Node.js
uses: actions/setup-node@v2
2019-10-30 14:48:49 -04:00
with:
2025-03-28 16:39:50 -04:00
node-version: '14'
2023-01-12 12:00:47 +05:30
2025-03-28 16:39:50 -04:00
- name: Cache dependencies
uses: actions/cache@v2
2023-01-12 12:00:47 +05:30
with:
2025-03-28 16:39:50 -04:00
path: ~/.npm
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-node-
2023-01-12 12:00:47 +05:30
2025-03-28 16:39:50 -04:00
- run: npm install
- run: npm run build