Skip to content

Commit

Permalink
refactor pipelines
Browse files Browse the repository at this point in the history
  • Loading branch information
SmnHgr committed Feb 9, 2024
1 parent 44baf7c commit db88145
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 9 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/backend-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,10 +27,10 @@ jobs:
- name: Validate Gradle wrapper
uses: gradle/wrapper-validation-action@v2

- name: Run the Gradle package task and cache the result
uses: gradle/gradle-build-action@v3
with:
arguments: -b ci.gradle package
# - name: Run the Gradle package task and cache the result
# uses: gradle/gradle-build-action@v3
# with:
# arguments: -b ci.gradle package

- name: Test
run: ./gradlew check
Expand Down
3 changes: 1 addition & 2 deletions .github/workflows/scanner-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,11 +21,10 @@ jobs:
uses: actions/checkout@v4

- name: Use Node.js
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: 18
cache: 'npm'
cache-dependency-path: subdir/package-lock.json

- name: Cache node modules
uses: actions/cache@v2
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/scanner-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
- name: Use Node.js
uses: actions/setup-node@v4
with:
node-version: "18"
node-version: 18

- name: Install dependencies
run: npm ci --prefer-offline
Expand All @@ -38,7 +38,7 @@ jobs:
- name: Use Node.js
uses: actions/setup-node@v4
with:
node-version: '18'
node-version: 18

- name: Install dependencies
run: npm ci --prefer-offline
Expand All @@ -55,7 +55,7 @@ jobs:
- name: Use Node.js
uses: actions/setup-node@v4
with:
node-version: '20'
node-version: 20

- name: Install dependencies
run: npm ci --prefer-offline
Expand Down

0 comments on commit db88145

Please sign in to comment.