mirror of https://github.com/actions/cache.git
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.
- Resolved conflicts in the LICENSE file. - Addressed errors and vulnerabilities in the codebase. - Configured build outputs and caching mechanisms in GitHub Actions. - Implemented security measures to protect sensitive information. - Refactored code to eliminate duplicates and improve efficiency. |
6 days ago | |
---|---|---|
- name: Cache uses: actions | 6 days ago | |
.devcontainer | 2 years ago | |
.github | 6 days ago | |
.licenses | 2 weeks ago | |
.vscode | 6 years ago | |
__tests__ | 6 months ago | |
dist | 2 weeks ago | |
restore | 8 months ago | |
save | 3 months ago | |
src | 6 months ago | |
.eslintrc.json | 3 years ago | |
.gitattributes | 3 years ago | |
.gitignore | 5 years ago | |
.licensed.yml | 4 months ago | |
.prettierrc.json | 6 years ago | |
CODE_OF_CONDUCT.md | 5 years ago | |
CONTRIBUTING.md | 5 years ago | |
LICENSE | 2 weeks ago | |
README.md | 7 days ago | |
RELEASES.md | 2 weeks ago | |
Windy | 2 weeks ago | |
action.yml | 2 weeks ago | |
caching-strategies.md | 3 months ago | |
cloudbuild.yaml.txt | 6 days ago | |
examples.md | 6 months ago | |
jest.config.js | 3 years ago | |
package-lock.json | 2 weeks ago | |
package.json | 2 weeks ago | |
tips-and-workarounds.md | 2 months ago | |
tsconfig.json | 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