Skip to content

Commit 6071d73

Browse files
ErioldDaniel Montoya
andauthored
feat(renovate): update project to node18 (#354)
Co-authored-by: Daniel Montoya <daniel.montoya@eclass.cl>
1 parent 27d9d38 commit 6071d73

File tree

8 files changed

+16085
-10285
lines changed

8 files changed

+16085
-10285
lines changed

.eslintrc

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
{
2+
"rules": {
3+
"semi":["error", "always"],
4+
"quotes": ["error", "double"]
5+
}
6+
}

.eslintrc.js

Lines changed: 0 additions & 1 deletion
This file was deleted.

.github/workflows/nodejs.yml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,11 @@ jobs:
66
test:
77
runs-on: ubuntu-latest
88
steps:
9-
- uses: actions/checkout@v2
10-
- uses: actions/setup-node@v2
9+
- uses: actions/checkout@v3
10+
- uses: actions/setup-node@v3
1111
with:
12-
node-version: "12.16.2"
13-
- uses: actions/cache@v2
12+
node-version: "18.18.0"
13+
- uses: actions/cache@v3
1414
with:
1515
path: ~/.npm
1616
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
@@ -25,11 +25,11 @@ jobs:
2525
if: github.ref == 'refs/heads/master'
2626
runs-on: ubuntu-latest
2727
steps:
28-
- uses: actions/checkout@v2
29-
- uses: actions/setup-node@v2
28+
- uses: actions/checkout@v3
29+
- uses: actions/setup-node@v3
3030
with:
31-
node-version: "12.16.2"
32-
- uses: actions/cache@v2
31+
node-version: "18.18.0"
32+
- uses: actions/cache@v3
3333
with:
3434
path: ~/.npm
3535
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}

.nvmrc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
12.22.12
1+
18.18.0

index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
module.exports = require('./react-app')
1+
module.exports = require("./react-app");

0 commit comments

Comments
 (0)