/setup-ssh-agent

Prepares the SSH agent so you can pull from private repositories

Primary LanguageJavaScript

Setup SSH Agent

Usage

steps:
  - uses: actions/checkout@v2
  - uses: glg-public/setup-ssh-agent@v1
    with:
      ssh-private-key: ${{ secrets.DEPLOYMENT_SSH_KEY }}
  - run: |
      npm clean-install
      npm run lint
      npm test