https://github.com/jg-wright/workflows
Reusable Github Workflows
https://github.com/jg-wright/workflows
Last synced: 8 days ago
JSON representation
Reusable Github Workflows
- Host: GitHub
- URL: https://github.com/jg-wright/workflows
- Owner: jg-wright
- License: mit
- Created: 2025-01-29T20:00:07.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2026-06-07T17:36:09.000Z (11 days ago)
- Last Synced: 2026-06-07T19:19:33.178Z (11 days ago)
- Language: TypeScript
- Size: 910 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Workflows
> Reusable github action workflows
## Dependency Cache
Speed up your Node.js builds by caching the dependencies.
```yaml
jobs:
test:
needs: [cache]
name: Test
runs-on: ubuntu-latest
steps:
- name: Checkout project
uses: actions/checkout@v4
- name: Use Node.js
uses: actions/setup-node@v4
with:
node-version-file: .nvmrc
- name: Dependencies
uses: johngeorgewright/workflows/actions/yarn-cache@main
# Or NPM
# - name: Dependencies
# uses: johngeorgewright/workflows/actions/npm-cache@main
```