Merge pull request #37 from Marli-Marlete/feat/spotify-sanitize-url #13
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# This workflow will do a clean installation of node dependencies, cache/restore them, build the source code and run tests across different versions of node | |
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-nodejs | |
name: Node.js CI | |
on: | |
push: | |
branches: ['master'] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
environment: production | |
strategy: | |
matrix: | |
node-version: [18.17.0] | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Use Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v3 | |
with: | |
node-version: ${{ matrix.node-version }} | |
cache: 'yarn' | |
- run: yarn install --frozen-lockfile | |
- run: yarn build | |
- run: yarn test | |
- name: ssh deploy | |
uses: easingthemes/[email protected] | |
env: | |
SSH_PRIVATE_KEY: ${{ secrets.EC2_SSH_KEY }} | |
REMOTE_HOST: ${{ secrets.HOST_DNS }} | |
REMOTE_USER: ${{ secrets.USERNAME }} | |
TARGET: ${{ secrets.TARGET_DIR }} | |
EXCLUDE: '.git/, /node_modules/' | |
SCRIPT_BEFORE: | | |
source ~/.nvm/nvm.sh; npm install pm2 -g | |
source ~/.nvm/nvm.sh; npm install yarn -g | |
SCRIPT_AFTER: | | |
source ~/.nvm/nvm.sh; cd deploy && yarn; | |
pm2 delete bot | |
pm2 start ~/deploy/dist/src/index.js --name="bot" --env=../../env |