Skip to content

Commit

Permalink
fix: test ci
Browse files Browse the repository at this point in the history
  • Loading branch information
wtto00 committed Nov 12, 2024
1 parent 59dbbe8 commit 7446eb2
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,10 @@ jobs:
run: pnpm i

- name: Prepare
run: mkdir ~/.ssh && echo "${{secrets.SSH_PRIVATE_KEY}}" > ~/.ssh/id_rsa
run: |
mkdir ~/.ssh
echo "${{secrets.SSH_PRIVATE_KEY}}" > ~/.ssh/id_rsa
chmod 600 ~/.ssh/id_rsa
- name: Test
run: pnpm test

0 comments on commit 7446eb2

Please sign in to comment.