Skip to content

Commit

Permalink
Merge pull request #51 from CrowdStrike/fix-ci
Browse files Browse the repository at this point in the history
pnpm i -f must be ran after a build, when using depMea.*.injected
  • Loading branch information
simonihmig committed Feb 15, 2023
2 parents 2427002 + 44895c9 commit 4a17863
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ jobs:
steps:
- uses: actions/checkout@v3
- uses: ./.github/actions/pnpm
- run: pnpm build
- run: pnpm build && pnpm i -f
# To be able to run glint, we need the dist directory
# - uses: ./.github/actions/download-built-package
- name: Lint + Format + Glint
Expand All @@ -67,7 +67,7 @@ jobs:
- uses: actions/checkout@v3
- uses: ./.github/actions/pnpm
# - uses: ./.github/actions/download-built-package
- run: pnpm build
- run: pnpm build && pnpm i -f
- name: 'Change TS to ${{ matrix.typescript-scenario }}'
run: 'pnpm add --save-dev ${{ matrix.typescript-scenario}}'
working-directory: ./test-app
Expand All @@ -87,7 +87,7 @@ jobs:
steps:
- uses: actions/checkout@v3
- uses: ./.github/actions/pnpm
- run: pnpm build
- run: pnpm build && pnpm i -f
# - uses: ./.github/actions/download-built-package
- run: pnpm --filter test-app test:ember

Expand All @@ -103,7 +103,7 @@ jobs:
- uses: ./.github/actions/pnpm
- name: Install Dependencies (without lockfile)
run: rm pnpm-lock.yaml && pnpm install
- run: pnpm build
- run: pnpm build && pnpm i -f
# - uses: ./.github/actions/download-built-package
- run: pnpm --filter test-app test:ember

Expand All @@ -129,7 +129,7 @@ jobs:
steps:
- uses: actions/checkout@v3
- uses: ./.github/actions/pnpm
- run: pnpm build
- run: pnpm build && pnpm i -f
# - uses: ./.github/actions/download-built-package
- name: Run Tests
working-directory: ./test-app
Expand All @@ -154,7 +154,7 @@ jobs:
with:
persist-credentials: false
- uses: ./.github/actions/pnpm
- run: pnpm build
- run: pnpm build && pnpm i -f
# - uses: ./.github/actions/download-built-package
- name: Create Release Pull Request or Publish to npm
id: changesets
Expand Down

0 comments on commit 4a17863

Please sign in to comment.