Skip to content

Commit

Permalink
fix: merge commands into one multiline command
Browse files Browse the repository at this point in the history
  • Loading branch information
cmgriffing committed May 20, 2021
1 parent 722a5b3 commit db3d098
Showing 1 changed file with 6 additions and 9 deletions.
15 changes: 6 additions & 9 deletions action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,13 +22,10 @@ inputs:
runs:
using: composite
steps:
- run: "curl -fsSL https://fnm.vercel.app/install | bash"
shell: bash
- run: export PATH=/home/runner/.fnm:$PATH
shell: bash
- run: eval \"`fnm env`\"
shell: bash
- run: "fnm install 14 && fnm use 14"
shell: bash
- run: "node index.js"
- run: |
curl -fsSL https://fnm.vercel.app/install | bash &&
eval \"`/home/runner/.fnm/fnm env`\" &&
/home/runner/.fnm/fnm install 14 &&
/home/runner/.fnm/fnm use 14 &&
node index.js
shell: bash

0 comments on commit db3d098

Please sign in to comment.