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

pnpm i -f must be ran after a build, when using depMea.*.injected #51

Merged
merged 1 commit into from
Feb 15, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


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