/actions-walkthrough

Actions demo on build, test, and publish to GPR

Primary LanguageJavaScriptMIT LicenseMIT

GitHub Actions

Here is the items quick overview of resources available for Actions.

Documentation

  1. Core concepts for GitHub Actions
  2. Automating your workflow
  3. Events that trigger workflows

Self-paced Learning

Existing Actions Resource

Cloud providers

Other popular tools

Feel free to comment or edit this readme with more informations.

fib-tools

Get the nth Number

const {getNumber} = require('@bbq-beets/fib-tools')
assert.strictEqual(getNumber(8), 21)
```asdfasdfadsf

## Get a List of Numbers

```javascript
const {getList} = require('@bbq-beets/fib-tools')
assert.strictDeepEqual(getList(8), [0, 1, 1, 2, 3, 5, 8, 13, 21])

Get a Sequence of Numbers

const {getSequence} = require('@bbq-beets/fib-tools')

const seq = getSequence()

for (const n of seq) {
  console.log(n) // The next Fibonacci number in the sequence
}