Skip to content

Commit 3a9ab3a

Browse files
chore(deps): update dependency node to v22
1 parent 2b0e6fa commit 3a9ab3a

File tree

10 files changed

+14
-14
lines changed

10 files changed

+14
-14
lines changed

.github/workflows/browserstack.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
- uses: actions/checkout@v3
1212
- uses: actions/setup-node@v3
1313
with:
14-
node-version: 18
14+
node-version: 22
1515
- uses: browserstack/github-actions/setup-env@master
1616
with:
1717
username: ${{ secrets.BROWSER_STACK_USERNAME }}

.github/workflows/example-ember.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
fetch-depth: 0
1313
- uses: actions/setup-node@v3
1414
with:
15-
node-version: 18
15+
node-version: 22
1616
cache: npm
1717
- run: npm ci
1818
- run: cd examples/ember-app && npm install && npm run build-muon && npm run build

.github/workflows/pages.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
uses: actions/checkout@v3
3333
- uses: actions/setup-node@v3
3434
with:
35-
node-version: 18
35+
node-version: 22
3636
- run: npm install && cd docs && npm install
3737
- run: npm run docs:build
3838
- name: Setup Pages

.github/workflows/percy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
- uses: actions/checkout@v3
1212
- uses: actions/setup-node@v3
1313
with:
14-
node-version: 18
14+
node-version: 22
1515
- uses: bahmutov/npm-install@v1
1616
- run: npm run test:percy
1717
env:

.github/workflows/publish-experimental.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
- uses: actions/checkout@v3
1414
- uses: actions/setup-node@v3
1515
with:
16-
node-version: 18
16+
node-version: 22
1717
registry-url: https://registry.npmjs.org/
1818
- run: npm ci
1919
- run: npm version prerelease --git-tag-version=false --preid=experimental-${{ github.run_number }}-"$(git show -s --format=%h)" --workspace=@muonic/muon

.github/workflows/publish-prerelease.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
- uses: actions/checkout@v3
1313
- uses: actions/setup-node@v3
1414
with:
15-
node-version: 18
15+
node-version: 22
1616
registry-url: https://registry.npmjs.org/
1717
- run: npm ci
1818
- run: npm publish --workspace=@muonic/muon --access public --tag next

.github/workflows/publish-stable.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
- uses: actions/checkout@v3
1313
- uses: actions/setup-node@v3
1414
with:
15-
node-version: 18
15+
node-version: 22
1616
registry-url: https://registry.npmjs.org/
1717
- run: npm ci
1818
- run: npm publish --workspace=@muonic/muon --access public

.github/workflows/storybook-main.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
fetch-depth: 0
1717
- uses: actions/setup-node@v3
1818
with:
19-
node-version: 18
19+
node-version: 22
2020
- uses: bahmutov/npm-install@v1
2121
- name: Publish to Chromatic
2222
uses: chromaui/action@v1

.github/workflows/storybook.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
fetch-depth: 0
1414
- uses: actions/setup-node@v3
1515
with:
16-
node-version: 18
16+
node-version: 22
1717
- uses: bahmutov/npm-install@v1
1818
- name: Publish to Chromatic
1919
uses: chromaui/action@v1

.github/workflows/test.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
- uses: actions/checkout@v3
1212
- uses: actions/setup-node@v3
1313
with:
14-
node-version: 18
14+
node-version: 22
1515
- uses: bahmutov/npm-install@v1
1616
- run: npm run lint
1717

@@ -23,7 +23,7 @@ jobs:
2323
- uses: actions/checkout@v3
2424
- uses: actions/setup-node@v3
2525
with:
26-
node-version: 18
26+
node-version: 22
2727
- uses: bahmutov/npm-install@v1
2828
- run: npm run test:browserstack
2929
env:
@@ -38,7 +38,7 @@ jobs:
3838
- uses: actions/checkout@v3
3939
- uses: actions/setup-node@v3
4040
with:
41-
node-version: 18
41+
node-version: 22
4242
- uses: bahmutov/npm-install@v1
4343
- run: npx playwright install
4444
- run: npx playwright install-deps
@@ -57,7 +57,7 @@ jobs:
5757
- uses: actions/checkout@v3
5858
- uses: actions/setup-node@v3
5959
with:
60-
node-version: 18
60+
node-version: 22
6161
- uses: bahmutov/npm-install@v1
6262
- run: npm run test:scripts
6363
- uses: actions/upload-artifact@v4
@@ -74,7 +74,7 @@ jobs:
7474
- uses: actions/checkout@v3
7575
- uses: actions/setup-node@v3
7676
with:
77-
node-version: 18
77+
node-version: 22
7878
- uses: bahmutov/npm-install@v1
7979
- run: npx playwright install
8080
- run: npx playwright install-deps

0 commit comments

Comments
 (0)