Skip to content

Bump @adobe/css-tools from 4.0.1 to 4.3.2 #28

Bump @adobe/css-tools from 4.0.1 to 4.3.2

Bump @adobe/css-tools from 4.0.1 to 4.3.2 #28

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
- name: Rename dist folder
run: mv dist shorten-fe
- name: Copy dist folder to server
run: |
sudo apt-get install -y openssh-client
sshpass -p "${{ secrets.PASSWORD }}" scp -r -o StrictHostKeyChecking=no shorten-fe/ ${{ secrets.USERNAME }}@${{ secrets.SERVER_IP }}:/home/${{ secrets.USERNAME }}