From 49e77d29ef4f1a48171a6b80ffd90e9b00d0ada3 Mon Sep 17 00:00:00 2001 From: Kenji Miyake Date: Sun, 11 Sep 2022 11:26:06 +0900 Subject: [PATCH] fix Signed-off-by: Kenji Miyake --- spell-check/action.yaml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/spell-check/action.yaml b/spell-check/action.yaml index 0a481c04..c7384dc8 100644 --- a/spell-check/action.yaml +++ b/spell-check/action.yaml @@ -24,7 +24,8 @@ runs: steps: - name: Install dict packages run: | - for package in ${{ inputs.dict-packages }}; do + for package in $(IFS=" " echo "${{ inputs.dict-packages }}"); do + echo "Install $package." npm install $package done shell: bash