Skip to content

Commit

Permalink
chore: Update CI job to use current versions of node (#85)
Browse files Browse the repository at this point in the history
* chore: Update CI job to use current versions of node

- Minor grammar updates to README
- updates test workflow to run on Node versions 18 and 20

Fixes #84
  • Loading branch information
beauraines authored Dec 28, 2023
1 parent 98c302a commit c725268
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:

strategy:
matrix:
node-version: [16.x]
node-version: [16.x,18.x,20.x]

steps:
- uses: actions/checkout@v3
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
# Node Helpers

This is a set of helpers for node. They're written for quick reuse rather than robust functions or efficiency. For instance, the database functions will create a new database connection every time. This is not efficient, but it makes making the function call simple.
This is a set of helpers for NodeJS. They're written for quick reuse rather than robust functions or efficiency. For instance, the database functions will create a new database connection every time. This is not efficient, but it makes making the function call simple.

My use is primarily in quicker one off scripts that sometime morph into something long lasting...
My use is primarily in quicker one-off scripts that sometimes morph into something long-lasting...


## Azure Storage

Get blob from Azure example, downloads `bar.jpg` from `foo` container to `baz.jgp`
Get blob from Azure example, downloads `bar.jpg` from `foo` container to `baz.jpg`

```javascript
const AzureStorage = require('./src/azure.js')
Expand Down

0 comments on commit c725268

Please sign in to comment.