Skip to content

Fix create error #284

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 4 commits into from
Jun 10, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/actions/setup/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ inputs:
node-version:
description: 'Node.js version to use'
required: true
default: '22'
default: '18'
install-command:
description: 'Command to install dependencies'
required: false
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:

- uses: ./.github/actions/setup
with:
node-version: '22'
node-version: '18'

- name: Compile package
run: pnpm compile
Expand All @@ -42,7 +42,7 @@ jobs:

- uses: ./.github/actions/setup
with:
node-version: '22'
node-version: '18'

- name: Compile package
run: pnpm compile
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/command-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-22.04, windows-latest]
node-version: [22]
node-version: [18]
steps:
- uses: actions/checkout@v4

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/e2e.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:

- uses: ./.github/actions/setup
with:
node-version: '22'
node-version: '18'

- name: Compile Extension.js
run: pnpm compile
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/preview.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:

- uses: ./.github/actions/setup
with:
node-version: '22'
node-version: '18'

- name: Build Preview
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release-preview.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:

- uses: ./.github/actions/setup
with:
node-version: '22'
node-version: '18'

- name: Build and Deploy
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:

- uses: ./.github/actions/setup
with:
node-version: '22'
node-version: '18'

- name: Publish packages to npm
id: changesets
Expand Down
Loading
Loading