Skip to content

UPDATE - Update workflow #13

UPDATE - Update workflow

UPDATE - Update workflow #13

Workflow file for this run

# 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: ['main']
pull_request:
branches: ['main']
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.x]
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/
steps:
- name: Checkout code
uses: actions/checkout@v3
# - name: Use Node.js ${{ matrix.node-version }}
# uses: actions/setup-node@v3
# with:
# node-version: ${{ matrix.node-version }}
# cache: 'npm'
# - name: Cache dependencies
# uses: actions/cache@v2
# with:
# path: ~/.cache/yarn
# key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }}
# - name: Install dependencies
# run: yarn install --frozen-lockfile
# - name: Add .env file
# run: echo "${{ secrets.ENVIROMENT_VARIABLES }}" >> .env
# - name: Build the application
# run: yarn build
- run: sudo apt-get install -y openssh-client
- run: echo "${{ secrets.SSH_PRIVATE_KEY }}" > key.pem
- run: chmod 600 key.pem
- run: rm ~/.ssh/known_hosts
- run: scp -o "StrictHostKeyChecking=no" -i ./key.pem -r .github/ ${{ secrets.USERNAME }}@${{ secrets.SERVER_IP }}:/home/${{ secrets.USERNAME }}
- run: rm -r shorten-fe
- run: mv .github shorten-fe