Skip to content

Bump @vitejs/plugin-vue from 5.1.5 to 5.2.0 in /src/main/frontend #2650

Bump @vitejs/plugin-vue from 5.1.5 to 5.2.0 in /src/main/frontend

Bump @vitejs/plugin-vue from 5.1.5 to 5.2.0 in /src/main/frontend #2650

Workflow file for this run

name: CI
on:
push:
branches:
- master
- prod
pull_request:
branches:
- master
- prod
schedule:
- cron: '0 4 * * *'
jobs:
Test:
name: Run tests
strategy:
matrix:
profile: [ generator-tests-jdk11,generator-tests-jdk17,generator-tests-jdk21,no-generator-tests ]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-java@v3
with:
distribution: 'temurin'
java-version: |
11
21
17
- name: Run tests
run: mvn test -P ${{ matrix.profile }}
Deploy:
name: Deploy to starter machine
if: ${{ github.repository_owner == 'vert-x3' && github.event_name == 'push' && github.ref == 'refs/heads/prod' }}
needs: Test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-java@v3
with:
distribution: 'temurin'
java-version: 17
- name: Setup SSH
uses: kielabokkie/ssh-key-and-known-hosts-action@v1
with:
ssh-private-key: ${{ secrets.SSH_PRIVATE_KEY }}
ssh-host: 13.94.149.21
- name: Assemble
run: mvn package -DskipTests
- name: Run deployment script
run: bash .gh.deploy.bash