Skip to content

Commit

Permalink
moved workflows to root of wf dir
Browse files Browse the repository at this point in the history
  • Loading branch information
ZibanPirate committed Sep 14, 2024
1 parent 9e4e176 commit 07370d3
Show file tree
Hide file tree
Showing 8 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/cd.deploy.stg.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ on:

jobs:
build:
uses: ./.github/workflows/reusable/ci.build.yml
uses: ./.github/workflows/ci.reusable.build.yml
with:
node-version: "20"
os: "ubuntu-latest"
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/ci.main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,35 +7,35 @@ on:

jobs:
build:
uses: ./.github/workflows/reusable/ci.build.yml
uses: ./.github/workflows/ci.reusable.build.yml
with:
node-version: "20"
os: "ubuntu-latest"

test-coverage:
needs: build
uses: ./.github/workflows/reusable/ci.test-coverage.yml
uses: ./.github/workflows/ci.reusable.test-coverage.yml
with:
node-version: "20"
os: "ubuntu-latest"

lint:
needs: build
uses: ./.github/workflows/reusable/ci.lint.yml
uses: ./.github/workflows/ci.reusable.lint.yml
with:
node-version: "20"
os: "ubuntu-latest"

misc:
needs: build
uses: ./.github/workflows/reusable/ci.misc.yml
uses: ./.github/workflows/ci.reusable.misc.yml
with:
node-version: "20"
os: "ubuntu-latest"

test-e2e:
needs: build
uses: ./.github/workflows/reusable/ci.test-e2e.yml
uses: ./.github/workflows/ci.reusable.test-e2e.yml
with:
node-version: "20"
os: "ubuntu-latest"
10 changes: 5 additions & 5 deletions .github/workflows/ci.pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,35 +20,35 @@ jobs:
sync-labels: true

build:
uses: ./.github/workflows/reusable/ci.build.yml
uses: ./.github/workflows/ci.reusable.build.yml
with:
node-version: "20"
os: "ubuntu-latest"

test-coverage:
needs: build
uses: ./.github/workflows/reusable/ci.test-coverage.yml
uses: ./.github/workflows/ci.reusable.test-coverage.yml
with:
node-version: "20"
os: "ubuntu-latest"

lint:
needs: build
uses: ./.github/workflows/reusable/ci.lint.yml
uses: ./.github/workflows/ci.reusable.lint.yml
with:
node-version: "20"
os: "ubuntu-latest"

misc:
needs: build
uses: ./.github/workflows/reusable/ci.misc.yml
uses: ./.github/workflows/ci.reusable.misc.yml
with:
node-version: "20"
os: "ubuntu-latest"

test-e2e:
needs: build
uses: ./.github/workflows/reusable/ci.test-e2e.yml
uses: ./.github/workflows/ci.reusable.test-e2e.yml
with:
node-version: "20"
os: "ubuntu-latest"
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 comments on commit 07370d3

Please sign in to comment.