Skip to content

Commit

Permalink
Fix paths in pull_request.yaml
Browse files Browse the repository at this point in the history
  • Loading branch information
mariush2 authored Jan 8, 2025
1 parent ddffb63 commit 68a6fba
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions config/config_files/workflows/pull_request.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,20 +11,20 @@ on:
jobs:
eslint:
name: ESLint
uses: ./.github/workflows/eslint.yaml
uses: ./eslint.yaml

test:
name: Test
uses: ./.github/workflows/test.yaml
uses: ./test.yaml

build:
name: Build
uses: ./.github/workflows/build.yaml
uses: ./build.yaml

build-docker:
name: Build docker image
uses: ./.github/workflows/build_docker.yaml
uses: ./build_docker.yaml

check_configs:
name: Check Config files
uses: ./.github/workflows/check_config.yaml
uses: ./check_config.yaml

0 comments on commit 68a6fba

Please sign in to comment.