Skip to content

Commit

Permalink
Rename workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
luin committed Nov 14, 2022
1 parent e1136dc commit 6660938
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 6 deletions.
File renamed without changes.
2 changes: 1 addition & 1 deletion .github/workflows/test.yml → .github/workflows/_unit.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: Unit Tests
on:
workflow_call:

jobs:
test:
runs-on: ubuntu-latest
Expand Down
6 changes: 4 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,5 +9,7 @@ concurrency:
cancel-in-progress: true

jobs:
test:
uses: ./.github/workflows/test.yml
unit:
uses: ./.github/workflows/_unit.yml
e2e:
uses: ./.github/workflows/_e2e.yml
6 changes: 3 additions & 3 deletions .github/workflows/pull-request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ on:
branches: [develop]

jobs:
test:
uses: ./.github/workflows/test.yml
unit:
uses: ./.github/workflows/_unit.yml
e2e:
uses: ./.github/workflows/e2e.yml
uses: ./.github/workflows/_e2e.yml

0 comments on commit 6660938

Please sign in to comment.