mirror of
https://github.com/Ichitux/lambada-fiesta-live.git
synced 2026-05-15 15:52:20 +02:00
59 lines
1.5 KiB
YAML
59 lines
1.5 KiB
YAML
# 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, 20.x, 22.x]
|
|
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/
|
|
|
|
|
|
steps:
|
|
- name: Test Summary
|
|
uses: test-summary/action@v2
|
|
with:
|
|
paths: "test/results/**/TEST-*.xml"
|
|
output: test-summary.md
|
|
if: always()
|
|
|
|
- name: Use checkout repository
|
|
uses: actions/checkout@v4
|
|
- name: Use Node.js ${{ matrix.node-version }}
|
|
uses: actions/setup-node@v4
|
|
with:
|
|
node-version: ${{ matrix.node-version }}
|
|
cache: 'npm'
|
|
- run: npm ci
|
|
- run: npm run build --if-present
|
|
- run: npm test
|
|
|
|
deploy:
|
|
needs: build
|
|
runs-on: [self-hosted, linux]
|
|
if: github.ref == 'refs/heads/main' && github.event_name == 'push'
|
|
|
|
steps:
|
|
- name: PM2 Deployment
|
|
uses: victorargento/pm2-deployment@0.1
|
|
with:
|
|
build: true
|
|
host: 192.168.1.102
|
|
username: root
|
|
port: 22
|
|
remote-path: /home/zouklambadabcn.com/public_html
|
|
pm2-id: ZLB
|
|
env:
|
|
DEPLOY_PASSWORD: ${{ secrets.DEPLOY_PASSWORD }}
|