Skip to content

Commit

Permalink
Fixing pipeline issues
Browse files Browse the repository at this point in the history
  • Loading branch information
isontheline committed May 25, 2024
1 parent ec87b8c commit cb82b96
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"version": "17",
"jdkDistro": "ms",
"installGradle": "true",
"gradleVersion": "latest"
"gradleVersion": "8.7"
},
"ghcr.io/devcontainers/features/node:1": {}
},
Expand Down
10 changes: 9 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,14 @@ jobs:
with:
node-version: 20
- uses: gradle/actions/setup-gradle@v3
with:
gradle-version: 8.7

- name: Display Tools Versions
run: |
gradle -v
echo "Node $(node -v)"
echo "NPM $(npm -v)"
- name: Create Release
if: github.ref == 'refs/heads/main'
Expand All @@ -26,7 +34,7 @@ jobs:
run: npm version from-git --no-git-tag-version --prefix docs

- name: Test dRAGon
run: gradle criticalLintGradle checkstyleMain npmInstall npmLint test
run: gradle checkstyleMain checkstyleTest npmInstall npmLint test

- name: Build Documentation
run: npm install --prefix docs && npm run build --prefix docs
Expand Down
8 changes: 3 additions & 5 deletions backend/src/test/java/ai/dragon/DragonApplicationTests.java
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,7 @@

@SpringBootTest
class DragonApplicationTests {

@Test
void contextLoads() {
}

@Test
void contextLoads() {
}
}

0 comments on commit cb82b96

Please sign in to comment.