Skip to content

Commit

Permalink
Merge pull request #2 from CatoTH/ci-pipeline
Browse files Browse the repository at this point in the history
Set up initial CI pipeline
  • Loading branch information
CatoTH authored Mar 16, 2024
2 parents 24f80e7 + 5b78207 commit b389ce8
Show file tree
Hide file tree
Showing 3 changed files with 53 additions and 2 deletions.
51 changes: 51 additions & 0 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,51 @@
name: Build and test project

on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]

env:
RABBITMQ_HOST: 127.0.0.1

jobs:
test:
runs-on: ubuntu-latest

services:
rabbitmq:
image: rabbitmq:3.13
env:
RABBITMQ_DEFAULT_USER: guest
RABBITMQ_DEFAULT_PASS: guest
ports:
- 5672:5672

steps:
- name: Checkout
uses: actions/checkout@v4

- name: Set up JDK 21
uses: actions/setup-java@v3
with:
java-version: '21'
distribution: 'temurin'
cache: maven

- name: Set up Node.JS
uses: actions/setup-node@v4
with:
node-version: '20'

- name: Install assets
run: npm ci

- name: Run checkstyle
run: mvn checkstyle:check

- name: Run spotbugs
run: mvn spotbugs:check

- name: Run integration tests
run: mvn test
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
"postinstall": "cp node_modules/@stomp/stompjs/bundles/stomp.umd.min.js src/main/resources/static/"
},
"engines": {
"node": ">=18"
"node": ">=20"
},
"dependencies": {
"@stomp/stompjs": "^7.0.0"
Expand Down

0 comments on commit b389ce8

Please sign in to comment.