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 maintainence #125

Merged
merged 2 commits into from
Aug 23, 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
21 changes: 0 additions & 21 deletions .github/actions/pnpm/action.yml

This file was deleted.

16 changes: 8 additions & 8 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: ./.github/actions/pnpm
- uses: wyvox/action-setup-pnpm@v2



Expand All @@ -32,7 +32,7 @@ jobs:
needs: [install_dependencies]
steps:
- uses: actions/checkout@v3
- uses: ./.github/actions/pnpm
- uses: wyvox/action-setup-pnpm@v2
- name: Lint
run: pnpm lint

Expand All @@ -44,7 +44,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: ./.github/actions/pnpm
- uses: wyvox/action-setup-pnpm@v2
- uses: ./.github/actions/assert-build


Expand All @@ -63,7 +63,7 @@ jobs:

steps:
- uses: actions/checkout@v3
- uses: ./.github/actions/pnpm
- uses: wyvox/action-setup-pnpm@v2
- uses: ./.github/actions/download-built-package
- name: 'Change TS to ${{ matrix.typescript-scenario }}'
run: 'pnpm add --save-dev ${{ matrix.typescript-scenario}}'
Expand All @@ -83,7 +83,7 @@ jobs:
needs: [build]
steps:
- uses: actions/checkout@v3
- uses: ./.github/actions/pnpm
- uses: wyvox/action-setup-pnpm@v2
- uses: ./.github/actions/download-built-package
- run: pnpm --filter test-app test:ember

Expand All @@ -94,7 +94,7 @@ jobs:
needs: [build]
steps:
- uses: actions/checkout@v3
- uses: ./.github/actions/pnpm
- uses: wyvox/action-setup-pnpm@v2
- name: Install Dependencies (without lockfile)
run: rm pnpm-lock.yaml && pnpm install
- uses: ./.github/actions/download-built-package
Expand Down Expand Up @@ -124,7 +124,7 @@ jobs:

steps:
- uses: actions/checkout@v3
- uses: ./.github/actions/pnpm
- uses: wyvox/action-setup-pnpm@v2
- uses: ./.github/actions/download-built-package
- name: Run Tests
working-directory: ./test-app
Expand All @@ -150,7 +150,7 @@ jobs:
- uses: actions/checkout@v3
with:
persist-credentials: false
- uses: ./.github/actions/pnpm
- uses: wyvox/action-setup-pnpm@v2
- run: pnpm build
- name: Create Release Pull Request or Publish to npm
id: changesets
Expand Down
33 changes: 0 additions & 33 deletions ci.yml

This file was deleted.

5 changes: 4 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@
"test": "pnpm --filter test-app test",
"lint": "pnpm --filter '*' lint",
"lint:fix": "pnpm --filter '*' lint:fix",
"ci:update": "npx ember-ci-update",
"release": "changeset publish"
},
"dependencies": {
Expand All @@ -24,5 +23,9 @@
"overrides": {
"@types/eslint": "^7.29.0"
}
},
"volta": {
"node": "18.17.1",
"pnpm": "8.6.12"
}
}
Loading