Skip to content

Commit 14bf5db

Browse files
authored
Merge pull request #1706 from codidact/0valt/test
Minor CI cleanup
2 parents a2a7293 + 98ae102 commit 14bf5db

2 files changed

Lines changed: 19 additions & 2 deletions

File tree

.github/workflows/ci-cd.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ jobs:
106106
path: tmp/screenshots
107107
if-no-files-found: ignore
108108
- uses: codecov/codecov-action@v5
109-
if: ${{ matrix.ruby_version == 3.2 && matrix.test_type == 'test' }}
109+
if: ${{ matrix.ruby_version == 3.2 && matrix.test_type == 'test' && github.actor != 'dependabot[bot]' }}
110110
with:
111111
directory: coverage
112112
fail_ci_if_error: true
@@ -116,7 +116,7 @@ jobs:
116116
deploy:
117117
name: Dev server deployment
118118
runs-on: ubuntu-latest
119-
if: ${{ github.event_name == 'push' }}
119+
if: ${{ github.event_name == 'push' && github.actor != 'dependabot[bot]' }}
120120
needs:
121121
- rubocop
122122
- typescript

.github/workflows/codeql-analysis.yml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,23 @@ on:
1111
- cron: '0 21 * * *'
1212

1313
jobs:
14+
# TEMPORARY RESTORE - REMOVE WITH CONFIG
15+
CodeQL-Build:
16+
runs-on: ubuntu-latest
17+
steps:
18+
- name: Checkout repository
19+
uses: actions/checkout@v2
20+
with:
21+
fetch-depth: 2
22+
- name: Initialize CodeQL
23+
uses: github/codeql-action/init@v2
24+
with:
25+
languages: javascript
26+
- name: Autobuild
27+
uses: github/codeql-action/autobuild@v2
28+
- name: Perform CodeQL Analysis
29+
uses: github/codeql-action/analyze@v2
30+
1431
analyze:
1532
name: Analyze JS and Ruby
1633
runs-on: ubuntu-latest

0 commit comments

Comments
 (0)