Skip to content

Commit 889616a

Browse files
committed
fix: use node 18
1 parent c9bd61d commit 889616a

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

.github/workflows/pull-request.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
- uses: actions/checkout@v2
1010
- uses: actions/setup-node@v1
1111
with:
12-
node-version: 16
12+
node-version: 18
1313
- name: Test and Build
1414
run: |
1515
yarn

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
- uses: actions/checkout@v2
1717
- uses: actions/setup-node@v1
1818
with:
19-
node-version: 16
19+
node-version: 18
2020
- name: Test and Build
2121
run: |
2222
echo "//registry.npmjs.org/:_authToken=${NPM_TOKEN}" > .npmrc

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ code in every repo that wants to check for cyclic dependencies.
1313
Install the package:
1414

1515
```
16-
yarn add @lifeomic/cyclone
16+
yarn add -D @lifeomic/cyclone
1717
```
1818

1919
Add a `cyclone.config.json` file to the root of the project with the following

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
"cyclone": "cli.js"
99
},
1010
"author": "LifeOmic <development@lifeomic.com>",
11-
"license": "",
11+
"license": "MIT",
1212
"publishConfig": {
1313
"access": "public"
1414
},

0 commit comments

Comments
 (0)