feat: test beforeunload compatibility #19
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
name: π Build and Deploy Nuxt.js 3 App to ovh vps | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
workflow_dispatch: | |
jobs: | |
build: | |
name: ποΈ Build | |
runs-on: ubuntu-latest | |
steps: | |
- name: π₯ Checkout repository | |
uses: actions/checkout@v3 | |
- name: βοΈ Setup Node.js | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 18 | |
- name: π¦ Install dependencies | |
run: npm ci | |
- name: π οΈ Build App | |
run: npm run build | |
- name: ποΈ Remove node_modules from .output/server | |
run: rm -rf .output/server/node_modules | |
- name: π Modify package.json | |
run: | | |
mv .output/server/package.json .output/package.json | |
jq '{name: .name, version: .version, private: .private, dependencies: .bundledDependencies}' .output/package.json > .output/temp.json | |
mv .output/temp.json .output/package.json | |
- name: π Create server.js | |
run: echo "import('./server/index.mjs');" > .output/server.js | |
- name: π€ Deploy to VPS | |
uses: appleboy/scp-action@master | |
with: | |
host: ${{ secrets.SSH_HOST }} | |
port: ${{ secrets.SSH_PORT }} | |
username: ${{ secrets.SSH_USERNAME }} | |
key: ${{ secrets.SSH_PRIVATE_KEY }} | |
source: ".output/" | |
target: "/var/www/dibodev.com/html" | |
- name: π Install dependencies and restart Server with PM2 | |
uses: appleboy/ssh-action@master | |
with: | |
host: ${{ secrets.SSH_HOST }} | |
port: ${{ secrets.SSH_PORT }} | |
username: ${{ secrets.SSH_USERNAME }} | |
key: ${{ secrets.SSH_PRIVATE_KEY }} | |
script: | | |
cd /var/www/dibodev.com/html/.output | |
npm install | |
pm2 restart dibodev.com || pm2 start server.js --name dibodev.com | |