Skip to content

Commit fc8f07e

Browse files
authored
Merge pull request #836 from kachick/sync-node-version-with-asdf
Fix WebApp CI with dependency issues
2 parents e56f219 + 966825b commit fc8f07e

File tree

5 files changed

+12
-3
lines changed

5 files changed

+12
-3
lines changed

.github/dependabot.yml

+3
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,9 @@ updates:
2121
open-pull-requests-limit: 10
2222
labels:
2323
- automerge
24+
ignore:
25+
- dependency-name: '@types/node'
26+
update-types: ['version-update:semver-major']
2427
- package-ecosystem: gomod
2528
directory: "/hashira-web/functions"
2629
schedule:

.github/workflows/hashira-web--test.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -25,9 +25,9 @@ jobs:
2525
runs-on: ubuntu-latest
2626
steps:
2727
- uses: actions/checkout@v2
28-
- uses: actions/setup-node@v2
28+
- uses: actions/setup-node@v3
2929
with:
30-
node-version: "14"
30+
node-version-file: "hashira-web/.tool-versions"
3131
cache: "yarn"
3232
cache-dependency-path: "hashira-web/yarn.lock"
3333
- run: yarn install

hashira-web/.tool-versions

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
yarn 1.22.15
2-
nodejs 16.11.0
2+
nodejs 16.20.0

hashira-web/package.json

+1
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,7 @@
3333
"vite": "^4.2.0"
3434
},
3535
"dependencies": {
36+
"@types/node": "^16.18.36",
3637
"firebase": "^9.22.1",
3738
"react": "^18.2.0",
3839
"react-dom": "^18.2.0",

hashira-web/yarn.lock

+5
Original file line numberDiff line numberDiff line change
@@ -1174,6 +1174,11 @@
11741174
resolved "https://registry.yarnpkg.com/@types/node/-/node-18.0.0.tgz#67c7b724e1bcdd7a8821ce0d5ee184d3b4dd525a"
11751175
integrity sha512-cHlGmko4gWLVI27cGJntjs/Sj8th9aYwplmZFwmmgYQQvL5NUsgVJG7OddLvNfLqYS31KFN0s3qlaD9qCaxACA==
11761176

1177+
"@types/node@^16.18.36":
1178+
version "16.18.36"
1179+
resolved "https://registry.yarnpkg.com/@types/node/-/node-16.18.36.tgz#0db5d7efc4760d36d0d1d22c85d1a53accd5dc27"
1180+
integrity sha512-8egDX8dE50XyXWH6C6PRCNkTP106DuUrvdrednFouDSmCi7IOvrqr0frznfZaHifHH/3aq/7a7v9N4wdXMqhBQ==
1181+
11771182
"@types/prop-types@*":
11781183
version "15.7.4"
11791184
resolved "https://registry.yarnpkg.com/@types/prop-types/-/prop-types-15.7.4.tgz#fcf7205c25dff795ee79af1e30da2c9790808f11"

0 commit comments

Comments
 (0)