Skip to content

Commit d4e152e

Browse files
authoredJun 12, 2023
Merge pull request #1062 from NullVoxPopuli/switch-to-pnpm
Extract test app
2 parents 5dfd2cf + 76e8b3e commit d4e152e

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

62 files changed

+1927
-231
lines changed
 

‎.github/workflows/ci.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
- uses: wyvox/action@v1
2424
- run: pnpm lint
2525
- run: pnpm test:ember
26-
working-directory: addon
26+
working-directory: test-app
2727

2828
floating-dependencies:
2929
name: 'Floating Dependencies'
@@ -35,7 +35,7 @@ jobs:
3535
with:
3636
pnpm-args: '--no-lockfile'
3737
- run: pnpm test:ember
38-
working-directory: addon
38+
working-directory: test-app
3939

4040
try-scenarios:
4141
name: 'Try: ${{ matrix.ember-try-scenario }}'
@@ -60,7 +60,7 @@ jobs:
6060
- uses: wyvox/action@v1
6161
- name: test
6262
run: node_modules/.bin/ember try:one ${{ matrix.ember-try-scenario }} --skip-cleanup
63-
working-directory: addon
63+
working-directory: test-app
6464

6565
types:
6666
runs-on: ubuntu-latest

‎addon/CONTRIBUTING.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,12 @@
44

55
* `git clone <repository-url>`
66
* `cd ember-qunit`
7-
* `yarn install`
7+
* `pnpm install`
88

99
## Linting
1010

11-
* `yarn lint`
12-
* `yarn lint:fix`
11+
* `pnpm lint`
12+
* `pnpm lint:fix`
1313

1414
## Running tests
1515

0 commit comments

Comments
 (0)
Please sign in to comment.