Skip to content

Update package.json

Update package.json #3

Workflow file for this run

name: Development CI/CD Pipeline
on:
push:
branches:
- dev
paths-ignore:
- .github/workflows/**
concurrency:
group: ${{ github.ref }}
cancel-in-progress: true
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version: '20'
- name: Cache npm modules
uses: actions/cache@v3
with:
path: ~/.npm
key: ${{ runner.os }}-npm-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-npm-
- name: Install npm
run: npm install -g npm@9
- name: Install dependencies
run: npm install
- name: Lint code
run: npm run lint
- name: Build project
run: npm run build
deploy:
runs-on: ubuntu-latest
needs: build
steps:
- name: Deploy to dev environment
uses: appleboy/[email protected]
with:
host: ${{ secrets.HOST }}
username: ${{ secrets.USERNAME }}
password: ${{ secrets.PASSWORD }}
script: |
./deploy_dev.sh remix