solid-logic 1.3.14-7ab6e77e → 1.3.14-9c8003a0

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.
@@ -20,8 +20,8 @@ jobs:
20
20
  strategy:
21
21
  matrix:
22
22
  node-version:
23
+ - 14.x
23
24
  - 16.x
24
- - 17.x
25
25
 
26
26
  steps:
27
27
  - uses: actions/checkout@v2
@@ -34,7 +34,7 @@ jobs:
34
34
  - run: npm test
35
35
  - run: npm run build --if-present
36
36
  - name: Save build
37
- if: matrix.node-version == '16.x'
37
+ if: matrix.node-version == '14.x'
38
38
  uses: actions/upload-artifact@v2
39
39
  with:
40
40
  name: build
@@ -52,7 +52,7 @@ jobs:
52
52
  name: build
53
53
  - uses: actions/setup-node@v1
54
54
  with:
55
- node-version: 16.x
55
+ node-version: 14.x
56
56
  - uses: rlespinasse/github-slug-action@v3.x
57
57
  - name: Append commit hash to package version
58
58
  run: 'sed -i -E "s/(\"version\": *\"[^\"]+)/\1-${GITHUB_SHA_SHORT}/" package.json'
@@ -9,7 +9,7 @@ jobs:
9
9
  - uses: actions/checkout@v2
10
10
  - uses: actions/setup-node@v1
11
11
  with:
12
- node-version: '16.x'
12
+ node-version: '14.x'
13
13
  registry-url: 'https://registry.npmjs.org'
14
14
  - run: npm install
15
15
  - run: npm publish
package/.nvmrc ADDED
@@ -0,0 +1 @@
1
+ v16.14.0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "solid-logic",
3
- "version": "1.3.14-7ab6e77e",
3
+ "version": "1.3.14-9c8003a0",
4
4
  "description": "Core business logic of Solid OS",
5
5
  "main": "lib/index.js",
6
6
  "scripts": {