Skip to content

Commit 4b0c645

Browse files
committed
Add v1 version
1 parent 3c7a79e commit 4b0c645

File tree

7 files changed

+32
-104
lines changed

7 files changed

+32
-104
lines changed

README.md

+12-86
Original file line numberDiff line numberDiff line change
@@ -1,105 +1,31 @@
1-
<p align="center">
2-
<a href="https://github.com/actions/typescript-action/actions"><img alt="typescript-action status" src="https://github.com/actions/typescript-action/workflows/build-test/badge.svg"></a>
3-
</p>
1+
# monorepo-cache-key
42

5-
# Create a JavaScript Action using TypeScript
6-
7-
Use this template to bootstrap the creation of a TypeScript action.:rocket:
8-
9-
This template includes compilation support, tests, a validation workflow, publishing, and versioning guidance.
10-
11-
If you are new, there's also a simpler introduction. See the [Hello World JavaScript Action](https://github.com/actions/hello-world-javascript-action)
12-
13-
## Create an action from this template
14-
15-
Click the `Use this Template` and provide the new repo details for your action
16-
17-
## Code in Main
18-
19-
> First, you'll need to have a reasonably modern version of `node` handy. This won't work with versions older than 9, for instance.
20-
21-
Install the dependencies
22-
```bash
23-
$ npm install
24-
```
25-
26-
Build the typescript and package it for distribution
27-
```bash
28-
$ npm run build && npm run package
29-
```
30-
31-
Run the tests :heavy_check_mark:
32-
```bash
33-
$ npm test
34-
35-
PASS ./index.test.js
36-
✓ throws invalid number (3ms)
37-
wait 500 ms (504ms)
38-
test runs (95ms)
39-
40-
...
41-
```
42-
43-
## Change action.yml
44-
45-
The action.yml defines the inputs and output for your action.
46-
47-
Update the action.yml with your name, description, inputs and outputs for your action.
48-
49-
See the [documentation](https://help.github.com/en/articles/metadata-syntax-for-github-actions)
50-
51-
## Change the Code
52-
53-
Most toolkit and CI/CD operations involve async operations so the action is run in an async function.
54-
55-
```javascript
56-
import * as core from '@actions/core';
57-
...
3+
```yaml
4+
- uses: actions/checkout@v2
585

59-
async function run() {
60-
try {
61-
...
62-
}
63-
catch (error) {
64-
core.setFailed(error.message);
65-
}
66-
}
6+
- name: Get Cache Key
7+
uses: flaviouk/monorepo-cache-key@v1
8+
id: cache-key
9+
with:
10+
cache-prefix: foo-bar # This could be {os}-{node-version} for example
6711

68-
run()
12+
- name: Print Cache Key
13+
run: echo ${{ steps.cache-key.outputs.cacheKey }}
6914
```
7015
71-
See the [toolkit documentation](https://github.com/actions/toolkit/blob/master/README.md#packages) for the various packages.
72-
7316
## Publish to a distribution branch
7417
75-
Actions are run from GitHub repos so we will checkin the packed dist folder.
18+
Actions are run from GitHub repos so we will checkin the packed dist folder.
7619
7720
Then run [ncc](https://github.com/zeit/ncc) and push the results:
21+
7822
```bash
7923
$ npm run package
8024
$ git add dist
8125
$ git commit -a -m "prod dependencies"
8226
$ git push origin releases/v1
8327
```
8428

85-
Note: We recommend using the `--license` option for ncc, which will create a license file for all of the production node modules used in your project.
86-
87-
Your action is now published! :rocket:
88-
89-
See the [versioning documentation](https://github.com/actions/toolkit/blob/master/docs/action-versioning.md)
90-
91-
## Validate
92-
93-
You can now validate the action by referencing `./` in a workflow in your repo (see [test.yml](.github/workflows/test.yml))
94-
95-
```yaml
96-
uses: ./
97-
with:
98-
milliseconds: 1000
99-
```
100-
101-
See the [actions tab](https://github.com/actions/typescript-action/actions) for runs of this action! :rocket:
102-
10329
## Usage:
10430

10531
After testing you can [create a v1 tag](https://github.com/actions/toolkit/blob/master/docs/action-versioning.md) to reference the stable and latest V1 action

action.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
name: 'Monorepo Cache'
2-
description: 'Provide a description here'
1+
name: 'Monorepo Cache Key'
2+
description: 'outputs a cache key for your monorepo node_modules'
33
author: 'flaviouk'
44
inputs:
55
cache-prefix:

dist/index.js

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/index.js.map

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+6-4
Original file line numberDiff line numberDiff line change
@@ -4,17 +4,19 @@
44
"private": true,
55
"description": "Monorepo Cache Key",
66
"main": "lib/main.js",
7-
"workspaces": ["packages/*"],
7+
"workspaces": [
8+
"packages/*"
9+
],
810
"scripts": {
911
"build": "rm -rf dist && tsc",
10-
"format": "prettier --write '**/*.ts'",
11-
"format-check": "prettier --check '**/*.ts'",
12+
"format": "prettier --write '**/*.{ts,yml,md,json}'",
13+
"format-check": "prettier --check '**/*.{ts,yml,md,json}'",
1214
"package": "ncc build --source-map --license licenses.txt",
1315
"all": "yarn format && yarn build && yarn package"
1416
},
1517
"repository": {
1618
"type": "git",
17-
"url": "git+https://github.com/flaviouk/monorepo-cache.git"
19+
"url": "git+https://github.com/flaviouk/monorepo-cache-key.git"
1820
},
1921
"keywords": [
2022
"actions",

src/main.ts

+3-3
Original file line numberDiff line numberDiff line change
@@ -2,16 +2,16 @@ import * as core from '@actions/core'
22
import md5File from 'md5-file'
33
import md5 from 'md5'
44
import path from 'path'
5-
import { getAllPackages } from 'standard-monorepo'
5+
import {getAllPackages} from 'standard-monorepo'
66

77
const getCacheKey = (prefix: string) => {
88
const context = process.cwd()
99
const packages = getAllPackages(context)
1010

1111
const inputs = [
12-
...packages.map(({ location }) => location),
12+
...packages.map(({location}) => location),
1313
path.join(context, 'package.json'),
14-
path.join(context, 'yarn.lock'),
14+
path.join(context, 'yarn.lock')
1515
]
1616

1717
const cacheKey = inputs

tsconfig.json

+7-7
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
{
22
"compilerOptions": {
3-
"target": "es6", /* Specify ECMAScript target version: 'ES3' (default), 'ES5', 'ES2015', 'ES2016', 'ES2017', 'ES2018', 'ES2019' or 'ESNEXT'. */
4-
"module": "commonjs", /* Specify module code generation: 'none', 'commonjs', 'amd', 'system', 'umd', 'es2015', or 'ESNext'. */
5-
"outDir": "./lib", /* Redirect output structure to the directory. */
6-
"rootDir": "./src", /* Specify the root directory of input files. Use to control the output directory structure with --outDir. */
7-
"strict": true, /* Enable all strict type-checking options. */
8-
"noImplicitAny": true, /* Raise error on expressions and declarations with an implied 'any' type. */
9-
"esModuleInterop": true /* Enables emit interoperability between CommonJS and ES Modules via creation of namespace objects for all imports. Implies 'allowSyntheticDefaultImports'. */
3+
"target": "es6" /* Specify ECMAScript target version: 'ES3' (default), 'ES5', 'ES2015', 'ES2016', 'ES2017', 'ES2018', 'ES2019' or 'ESNEXT'. */,
4+
"module": "commonjs" /* Specify module code generation: 'none', 'commonjs', 'amd', 'system', 'umd', 'es2015', or 'ESNext'. */,
5+
"outDir": "./lib" /* Redirect output structure to the directory. */,
6+
"rootDir": "./src" /* Specify the root directory of input files. Use to control the output directory structure with --outDir. */,
7+
"strict": true /* Enable all strict type-checking options. */,
8+
"noImplicitAny": true /* Raise error on expressions and declarations with an implied 'any' type. */,
9+
"esModuleInterop": true /* Enables emit interoperability between CommonJS and ES Modules via creation of namespace objects for all imports. Implies 'allowSyntheticDefaultImports'. */
1010
},
1111
"exclude": ["node_modules", "**/*.test.ts"]
1212
}

0 commit comments

Comments
 (0)