Skip to content

Commit

Permalink
fix: don't use common steps
Browse files Browse the repository at this point in the history
  • Loading branch information
joonatank committed Aug 28, 2023
1 parent 0aad23b commit 552de15
Showing 1 changed file with 30 additions and 6 deletions.
36 changes: 30 additions & 6 deletions .github/workflows/pipeline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,16 @@ jobs:
# TODO disabled for testing
#if: needs.changed-packages.outputs.admin_changed == 'true'
steps:
- name: Setup step
uses: ./.github/actions/common-steps.yml
- name: Checkout code
uses: actions/checkout@v2
- uses: actions/setup-node@v3
with:
node-version: 18
- uses: pnpm/action-setup@v2
with:
version: 8
- name: Install dependencies
run: pnpm install --frozen-lockfile
- name: Run CI checks
run: |
pnpm lint --filter=admin-ui...
Expand All @@ -42,8 +50,16 @@ jobs:
# TODO disabled for testing
#if: needs.changed-packages.outputs.ui_changed == 'true'
steps:
- name: Setup step
uses: ./.github/actions/common-steps.yml
- name: Checkout code
uses: actions/checkout@v2
- uses: actions/setup-node@v3
with:
node-version: 18
- uses: pnpm/action-setup@v2
with:
version: 8
- name: Install dependencies
run: pnpm install --frozen-lockfile
- name: Run CI checks
run: |
pnpm lint --filter=ui...
Expand All @@ -57,8 +73,16 @@ jobs:
# TODO disabled for testing
#if: needs.changed-packages.outputs.ui_changed == 'true'
steps:
- name: Setup step
uses: ./.github/actions/common-steps.yml
- name: Checkout code
uses: actions/checkout@v2
- uses: actions/setup-node@v3
with:
node-version: 18
- uses: pnpm/action-setup@v2
with:
version: 8
- name: Install dependencies
run: pnpm install --frozen-lockfile
- name: Run CI checks
run: |
pnpm build --filter=ui...
Expand Down

0 comments on commit 552de15

Please sign in to comment.