Skip to content

Commit

Permalink
fix(actions): testing fix for errors
Browse files Browse the repository at this point in the history
  • Loading branch information
miguelramos committed Jan 19, 2024
1 parent b68c78a commit 6dcd954
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 9 deletions.
11 changes: 2 additions & 9 deletions .github/workflows/build-action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,14 +6,7 @@ env:
CI: true

jobs:
prepare:
name: Prepare Environment
checkout-install-build:
name: Prepare Environment and Build
uses: ./.github/workflows/workflow-base.yml
secrets: inherit
steps:
- name: Install dependencies
run: pnpm install

- name: Build
run: pnpm build

10 changes: 10 additions & 0 deletions .github/workflows/workflow-base.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,3 +15,13 @@ jobs:
needs: [node]
uses: ./.github/workflows/workflow-pnpm.yml
secrets: inherit
build:
name: Build Packages
runs-on: ubuntu-latest
needs: [pnpm]
steps:
- name: Install dependencies
run: pnpm install

- name: Build
run: pnpm build

0 comments on commit 6dcd954

Please sign in to comment.