Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: ci/cd pipeline #3

Merged
merged 2 commits into from
Sep 9, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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