mirror of
https://github.com/rlespinasse/github-slug-action.git
synced 2026-06-13 18:11:17 +00:00
BREAKING CHANGE: The action implementation move from container action to node.js action Co-authored-by: Romain Lespinasse <romain.lespinasse@gmail.com>
27 lines
321 B
Markdown
27 lines
321 B
Markdown
# Developers guide
|
|
|
|
Install the dependencies
|
|
|
|
```bash
|
|
npm install
|
|
```
|
|
|
|
Build the typescript and package it for distribution
|
|
|
|
```bash
|
|
npm run build && npm run package
|
|
```
|
|
|
|
Run the tests
|
|
|
|
```bash
|
|
$ npm test
|
|
|
|
PASS ./index.test.js
|
|
✓ throws invalid number (3ms)
|
|
✓ wait 500 ms (504ms)
|
|
✓ test runs (95ms)
|
|
|
|
...
|
|
```
|