Skip to content

Commit

Permalink
Merge pull request #3 from goat-community/v2
Browse files Browse the repository at this point in the history
fix: ci/cd pipeline
  • Loading branch information
majkshkurti authored Sep 9, 2023
2 parents c3ee89d + 63ccae8 commit f1f0045
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 10 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,10 @@ jobs:
uses: actions/checkout@v4

- name: 📥 Checkout PR
uses: goat-community/.github/.github/actions/pr-git-checkout
uses: goat-community/.github/.github/actions/pr-git-checkout@main

- name: 📥 Monorepo install
uses: goat-community/.github/.github/actions/pnpm-install
uses: goat-community/.github/.github/actions/pnpm-install@main
with:
enable-corepack: true
cwd: ${{ github.workspace }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/nextjs-bundle-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,10 @@ jobs:

- name: 📥 Checkout PR
if: ${{ github.event_name == 'pull_request' }}
uses: goat-community/.github/.github/actions/pr-git-checkout
uses: goat-community/.github/.github/actions/pr-git-checkout@main

- name: 📥 Monorepo install
uses: goat-community/.github/.github/actions/pnpm-install
uses: goat-community/.github/.github/actions/pnpm-install@main
with:
enable-corepack: true
cwd: ${{ github.workspace }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ jobs:

typecheck:
name: typecheck
uses: ./.github/workflows/check-types.yml
uses: ./.github/workflows/typecheck.yml
secrets: inherit

lint:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/production-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,10 @@ jobs:
uses: actions/checkout@v4

- name: 📥 Checkout PR
uses: goat-community/.github/.github/actions/pr-git-checkout
uses: goat-community/.github/.github/actions/pr-git-checkout@main

- name: 📥 Monorepo install
uses: goat-community/.github/.github/actions/pnpm-install
uses: goat-community/.github/.github/actions/pnpm-install@main
with:
enable-corepack: true
cwd: ${{ github.workspace }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ concurrency:
jobs:
release-docker:
name: release
uses: "goat-community/.github/.github/workflows/reusable-docker-build.yml@main"
uses: goat-community/.github/.github/workflows/reusable-docker-build.yml@main
permissions:
contents: read
packages: write
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,10 @@ jobs:
uses: actions/checkout@v4

- name: 📥 Checkout PR
uses: goat-community/.github/.github/actions/pr-git-checkout
uses: goat-community/.github/.github/actions/pr-git-checkout@main

- name: 📥 Monorepo install
uses: goat-community/.github/.github/actions/pnpm-install
uses: goat-community/.github/.github/actions/pnpm-install@main
with:
enable-corepack: true
cwd: ${{ github.workspace }}
Expand Down

0 comments on commit f1f0045

Please sign in to comment.