Skip to content

Commit 1c45b33

Browse files
authored
fixing/Node version update (#970)
* node version update in package.json and test.yml file * node version update in package.json and test.yml file, deleted a unnecessary file * removed a unnecessary comment in default.js * Fixed the formatting. * Changed prettier formatting to what it was previously. * Set the port to 4000 in the package.json. * format update in tdd-files-list.txt * Update in formatting in package.json
1 parent 6919649 commit 1c45b33

File tree

3 files changed

+6
-5
lines changed

3 files changed

+6
-5
lines changed

.github/workflows/test.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,16 +6,15 @@ name: Tests
66
on:
77
pull_request:
88
branches:
9-
- '**'
9+
- "**"
1010

1111
jobs:
1212
build:
13-
1413
runs-on: ubuntu-latest
1514

1615
strategy:
1716
matrix:
18-
node-version: [14.x]
17+
node-version: [18.x]
1918

2019
steps:
2120
- uses: actions/checkout@v3

firebase.json

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,11 @@
11
{
22
"emulators": {
33
"firestore": {
4+
"host": "0.0.0.0",
45
"port": 8081
56
},
67
"ui": {
8+
"host": "0.0.0.0",
79
"enabled": true,
810
"port": 4000
911
}

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -60,13 +60,13 @@
6060
"sinon": "^15.0.0"
6161
},
6262
"engines": {
63-
"node": "14.x"
63+
"node": "18.x"
6464
},
6565
"pre-commit": [
6666
"lint"
6767
],
6868
"volta": {
69-
"node": "14.21.1",
69+
"node": "18.15.0",
7070
"yarn": "1.22.19"
7171
}
7272
}

0 commit comments

Comments
 (0)