Skip to content

Commit

Permalink
feat: Initial version (#1)
Browse files Browse the repository at this point in the history
  • Loading branch information
gr2m committed Mar 4, 2021
1 parent e67c7a7 commit 8396e5d
Show file tree
Hide file tree
Showing 9 changed files with 1,967 additions and 2 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: Release
on:
push:
branches:
- main

jobs:
release:
name: release
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: 12
- uses: actions/cache@v1
with:
path: ~/.npm
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-node-
- run: npm ci
- run: npx semantic-release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_AUTOMATION_TOKEN }}
37 changes: 37 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
name: Test
on:
push:
branches:
- main
pull_request:
types: [opened, synchronize]

jobs:
test_matrix:
runs-on: ubuntu-latest
strategy:
matrix:
node_version: ["12", "14"]

steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node_version }}
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node_version }}
- uses: actions/cache@v1
with:
path: ~/.npm
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-node-
- run: npm ci
- run: npm test

# The "test" step can be required in branch protection and does not
# change each time the test matrix changes.
test:
runs-on: ubuntu-latest
needs: test_matrix
steps:
- run: echo ok
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
node_modules
File renamed without changes.
19 changes: 17 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,24 @@
# 🚧 WORK IN PROGRESS. See [#1](https://github.com/octoherd/script-hello-world/pull/1)

# script-hello-world

> The "Hello, World!" of all Octoherd Scripts!
[![@latest](https://img.shields.io/npm/v/@octoherd/script-hello-world.svg)](https://www.npmjs.com/package/@octoherd/script-hello-world)
[![Build Status](https://github.com/octoherd/script-hello-world/workflows/Test/badge.svg)](https://github.com/octoherd/script-hello-world/actions?query=workflow%3ATest+branch%3Amain)

## Usage

```js
npx @octoherd/script-hello-world \
--octoherd-token 0123456789012345678901234567890123456789 \
"octoherd/*"
```

## Options

| option | type | description |
| ----------------- | ------ | ------------------ |
| `--greeting-name` | string | name to be greeted |

## Contributing

See [CONTRIBUTING.md](CONTRIBUTING.md)
Expand Down
6 changes: 6 additions & 0 deletions cli.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
#!/usr/bin/env node

import { script } from "./script.js";
import { run } from "@octoherd/cli/run";

run(script);

0 comments on commit 8396e5d

Please sign in to comment.