SiyaoIsHiding commented on code in PR #466: URL: https://github.com/apache/cassandra-nodejs-driver/pull/466#discussion_r3416714755
########## .github/actions/setup-deno/action.yml: ########## @@ -0,0 +1,14 @@ +name: Set up Deno +description: Install Deno from the official install script (no third-party actions) + +runs: + using: composite + steps: + - name: Install Deno + shell: bash + run: | + export DENO_INSTALL="$HOME/.deno" + curl -fsSL https://deno.land/install.sh | sh Review Comment: Doesn't matter ########## .github/actions/setup-bun/action.yml: ########## @@ -0,0 +1,14 @@ +name: Set up Bun +description: Install Bun from the official install script + +runs: + using: composite + steps: + - name: Install Bun + shell: bash + run: | + export BUN_INSTALL="$HOME/.bun" + curl -fsSL https://bun.com/install | bash Review Comment: Doesn't matter -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
