Skip to content

Commit

Permalink
Merge branch 'master' into update-dependencies1
Browse files Browse the repository at this point in the history
  • Loading branch information
mkszepp committed Sep 9, 2024
2 parents 6adba56 + f674327 commit ecaee58
Show file tree
Hide file tree
Showing 11 changed files with 35,589 additions and 386 deletions.
11 changes: 10 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,8 @@ jobs:

- name: 'Install dependencies'
run: pnpm install --frozen-lockfile
- run: pnpm build
- run: pnpm i -f # re-sync injected deps

- name: Lint
run: pnpm --filter ember-power-select lint
Expand All @@ -56,6 +58,9 @@ jobs:
- name: Install Dependencies
run: pnpm install --frozen-lockfile

- run: pnpm build
- run: pnpm i -f # re-sync injected deps

- name: Run Tests
run: pnpm --filter test-app test:ember

Expand All @@ -78,6 +83,8 @@ jobs:

- name: Install Dependencies
run: pnpm install --frozen-lockfile
- run: pnpm build
- run: pnpm i -f # re-sync injected deps

- name: Run Tests
run: pnpm --filter test-app test:ember
Expand Down Expand Up @@ -119,8 +126,10 @@ jobs:

- name: Install Dependencies
run: pnpm install --frozen-lockfile
- run: pnpm build
- run: pnpm i -f # re-sync injected deps

- name: Run Tests
env:
EMBER_TRY_SCENARIO: ${{ matrix.try-scenario }}
run: pnpm --filter test-app test:ember-try $EMBER_TRY_SCENARIO
run: pnpm --filter test-app test:ember-try $EMBER_TRY_SCENARIO --skip-cleanup
11 changes: 10 additions & 1 deletion .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,9 @@ jobs:
- name: 'Install dependencies'
run: pnpm install --frozen-lockfile

- run: pnpm build
- run: pnpm i -f # re-sync injected deps

- name: Lint
run: pnpm --filter docs lint

Expand All @@ -55,7 +58,10 @@ jobs:

- name: Install Dependencies
run: pnpm install --frozen-lockfile


- run: pnpm build
- run: pnpm i -f # re-sync injected deps

- name: Run Tests
run: pnpm --filter docs test:ember

Expand All @@ -80,6 +86,9 @@ jobs:

- name: Install Dependencies
run: pnpm install --frozen-lockfile

- run: pnpm build
- run: pnpm i -f # re-sync injected deps

- name: Run Tests
run: pnpm --filter docs build
Expand Down
5 changes: 5 additions & 0 deletions docs/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,11 @@
"test:ember-try": "ember try:one",
"test:ember-compatibility": "ember try:each"
},
"dependenciesMeta": {
"ember-power-select": {
"injected": true
}
},
"devDependencies": {
"@babel/core": "^7.25.2",
"@babel/eslint-parser": "^7.25.1",
Expand Down
Loading

0 comments on commit ecaee58

Please sign in to comment.