node-osc 6.1.7 → 6.1.8

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -32,10 +32,11 @@ jobs:
32
32
  with:
33
33
  ssh-key: ${{ secrets.DEPLOY_KEY }}
34
34
 
35
- - name: Setup Node.js 14
36
- uses: actions/setup-node@v1
35
+ - name: Setup Node.js
36
+ uses: actions/setup-node@v2
37
37
  with:
38
- node-version: 14.x
38
+ node-version: '16'
39
+ cache: 'npm'
39
40
 
40
41
  - name: Install npm packages
41
42
  run: npm ci
@@ -11,9 +11,10 @@ jobs:
11
11
  runs-on: ubuntu-latest
12
12
  steps:
13
13
  - uses: actions/checkout@v2
14
- - uses: actions/setup-node@v1
14
+ - uses: actions/setup-node@v2
15
15
  with:
16
- node-version: 16
16
+ node-version: '16'
17
+ cache: 'npm'
17
18
  - name: Publish
18
19
  run: |
19
20
  npm config set //registry.npmjs.org/:_authToken ${NPM_TOKEN}
@@ -11,7 +11,7 @@ jobs:
11
11
  run-tests:
12
12
  strategy:
13
13
  matrix:
14
- node-version: [16.x, 14.x, 12.x]
14
+ node-version: ['16', '14', '12']
15
15
  os: [ubuntu-latest, macos-latest, windows-latest]
16
16
 
17
17
  runs-on: ${{ matrix.os }}
@@ -20,9 +20,10 @@ jobs:
20
20
  - uses: actions/checkout@v2
21
21
 
22
22
  - name: Use Node.js ${{ matrix.node-version }}
23
- uses: actions/setup-node@v1
23
+ uses: actions/setup-node@v2
24
24
  with:
25
25
  node-version: ${{ matrix.node-version }}
26
+ cache: 'npm'
26
27
 
27
28
  - name: Get npm cache directory
28
29
  if: matrix.os != 'windows-latest'
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "node-osc",
3
3
  "description": "pyOSC inspired library for sending and receiving OSC messages",
4
- "version": "6.1.7",
4
+ "version": "6.1.8",
5
5
  "exports": {
6
6
  "require": "./dist/lib/index.js",
7
7
  "default": "./lib/index.mjs"