Skip to content

Commit

Permalink
GitHub Actions does not support target: node18
Browse files Browse the repository at this point in the history
  • Loading branch information
ghengeveld committed Oct 18, 2023
1 parent e7faccc commit 37aee47
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -125,4 +125,4 @@ outputs:

runs:
main: action/register.js
using: node18 # Sync with `target` in tsup.config.ts
using: node20 # Sync with `target` in tsup.config.ts
2 changes: 1 addition & 1 deletion tsup.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,6 @@ export default defineConfig((options) => [
sourcemap: false,
clean: true,
platform: 'node',
target: 'node18', // Sync with `runs.using` in action.yml
target: 'node20', // Sync with `runs.using` in action.yml
},
]);

0 comments on commit 37aee47

Please sign in to comment.