Skip to content

Commit e0ae354

Browse files
a2937raisedadead
authored andcommitted
fix: update nodejs version
1 parent 6b4a7b0 commit e0ae354

File tree

5 files changed

+13322
-7835
lines changed

5 files changed

+13322
-7835
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99

1010
strategy:
1111
matrix:
12-
node-version: [14.x]
12+
node-version: [20.x]
1313

1414
steps:
1515
- name: Checkout Source Files
@@ -28,7 +28,7 @@ jobs:
2828
strategy:
2929
matrix:
3030
browsers: [chrome, firefox]
31-
node-version: [14.x]
31+
node-version: [20.x]
3232
steps:
3333
- name: Set Action Environment Variables
3434
run: |
@@ -54,7 +54,7 @@ jobs:
5454

5555
strategy:
5656
matrix:
57-
node-version: [14.x]
57+
node-version: [20.x]
5858

5959
steps:
6060
- name: Checkout Source Files

.gitignore

Lines changed: 16 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -9,20 +9,30 @@
99
/coverage
1010
/cypress/videos
1111

12+
# dotenv environment variables file
13+
.env
14+
.env.test
15+
.env.local
16+
.env.development.local
17+
.env.test.local
18+
.env.production.local
19+
1220
# production
1321
/build
1422

1523
# misc
1624
.DS_Store
17-
.env.local
18-
.env.development.local
19-
.env.test.local
20-
.env.production.local
25+
.vscode
2126

27+
# Logs
28+
logs
29+
*.log
2230
npm-debug.log*
2331
yarn-debug.log*
2432
yarn-error.log*
2533

26-
.netlify
27-
.vscode
34+
# Optional eslint cache
2835
.eslintcache
36+
37+
### Netlify ###
38+
.netlify

.husky/pre-commit

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1 @@
1-
#!/bin/sh
2-
. "$(dirname "$0")/_/husky.sh"
3-
41
npx lint-staged

0 commit comments

Comments
 (0)