This repository has been archived by the owner on Apr 5, 2024. It is now read-only.
Bump com.diffplug.spotless from 6.24.0 to 6.25.0 #8
Workflow file for this run
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: Test Dependabot PRs | |
on: | |
push: | |
branches: | |
- 'dependabot/**' | |
jobs: | |
# Denne matches mot required checks som trigger automerge av Dependabot PRs. Endrer du her må du også endre i https://github.com/navikt/dp-auth/settings/branches | |
test: | |
name: test | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-java@v4 | |
with: | |
distribution: temurin | |
java-version: 17 | |
- uses: gradle/[email protected] | |
with: | |
arguments: --configuration-cache test | |
# Alternativ for repos med node | |
#- uses: actions/setup-node@v4 | |
# with: | |
# node-version-file: package.json | |
# cache: npm | |
#- run: npm install | |
#- run: npm test |