Skip to content

Commit

Permalink
Merge branch 'main' into target-button
Browse files Browse the repository at this point in the history
  • Loading branch information
sjd78 authored May 8, 2024
2 parents 0d8713b + a12c308 commit 9cca4a6
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 2 deletions.
2 changes: 2 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@ updates:
directory: "/"
schedule:
interval: "daily"
commit-message:
prefix: ":ghost: "
allow:
- dependency-name: "@patternfly/*"
dependency-type: "direct"
13 changes: 11 additions & 2 deletions .github/workflows/ci-repo.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,18 +5,25 @@ on:
branches:
- "main"
- "release-*"

pull_request:
branches:
- "main"
- "release-*"

schedule:
- cron: "35 5 * * *" # every day @ 5:35am UTC

workflow_dispatch:

jobs:
unit-test-lookup-image:
runs-on: ubuntu-latest
outputs:
builder-image: ${{ steps.grepBuilder.outputs.builder }}
steps:
- uses: actions/checkout@v4

- name: Lookup builder image from the project's Dockerfile
id: grepBuilder
run: |
Expand Down Expand Up @@ -55,13 +62,15 @@ jobs:
run: npm run test -- --coverage --watchAll=false

- name: Upload to codecov (client)
if: ${{ github.event.pull_request }}
uses: codecov/codecov-action@v4
with:
flags: client
directory: ./*/coverage
directory: ./client/coverage

- name: Upload to codecov (server)
if: ${{ github.event.pull_request }}
uses: codecov/codecov-action@v4
with:
flags: server
directory: ./*/coverage
directory: ./server/coverage

0 comments on commit 9cca4a6

Please sign in to comment.