Skip to content

Commit 0328746

Browse files
committed
fix fixtures
1 parent 03cde05 commit 0328746

7 files changed

Lines changed: 11 additions & 13 deletions

File tree

tests/fixtures/default/.github/workflows/ci.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ jobs:
4949
try-scenarios:
5050
name: ${{ matrix.try-scenario }}
5151
runs-on: ubuntu-latest
52-
needs: 'test'
52+
needs: "test"
5353
timeout-minutes: 10
5454

5555
strategy:
@@ -74,4 +74,3 @@ jobs:
7474
run: npm ci
7575
- name: Run Tests
7676
run: ./node_modules/.bin/ember try:one ${{ matrix.try-scenario }} --skip-cleanup
77-
working-directory: test-app

tests/fixtures/default/.github/workflows/push-dist.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,4 +31,3 @@ jobs:
3131
with:
3232
branch: dist
3333
token: ${{ secrets.GITHUB_TOKEN }}
34-
working-directory: 'my-addon'

tests/fixtures/default/.prettierrc.cjs

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,13 @@
22

33
module.exports = {
44
plugins: ['prettier-plugin-ember-template-tag'],
5-
singleQuote: true,
5+
overrides: [
6+
{
7+
files: '*.{js,gjs,ts,gts,mjs,mts,cjs,cts}',
8+
options: {
9+
singleQuote: true,
10+
templateSingleQuote: false,
11+
},
12+
},
13+
],
614
};

tests/fixtures/default/CONTRIBUTING.md

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,18 +13,15 @@
1313

1414
## Building the addon
1515

16-
- `cd my-addon`
1716
- `npm build`
1817

1918
## Running tests
2019

21-
- `cd test-app`
2220
- `npm run test` – Runs the test suite on the current Ember version
2321
- `npm run test:watch` – Runs the test suite in "watch mode"
2422

2523
## Running the test application
2624

27-
- `cd test-app`
2825
- `npm run start`
2926
- Visit the test application at [http://localhost:4200](http://localhost:4200).
3027

tests/fixtures/pnpm/.github/workflows/ci.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ jobs:
5151
try-scenarios:
5252
name: ${{ matrix.try-scenario }}
5353
runs-on: ubuntu-latest
54-
needs: 'test'
54+
needs: "test"
5555
timeout-minutes: 10
5656

5757
strategy:
@@ -77,4 +77,3 @@ jobs:
7777
run: pnpm install --frozen-lockfile
7878
- name: Run Tests
7979
run: ./node_modules/.bin/ember try:one ${{ matrix.try-scenario }} --skip-cleanup
80-
working-directory: test-app

tests/fixtures/pnpm/.github/workflows/push-dist.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,4 +32,3 @@ jobs:
3232
with:
3333
branch: dist
3434
token: ${{ secrets.GITHUB_TOKEN }}
35-
working-directory: 'my-addon'

tests/fixtures/pnpm/CONTRIBUTING.md

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,18 +13,15 @@
1313

1414
## Building the addon
1515

16-
- `cd my-addon`
1716
- `pnpm build`
1817

1918
## Running tests
2019

21-
- `cd test-app`
2220
- `pnpm test` – Runs the test suite on the current Ember version
2321
- `pnpm test:watch` – Runs the test suite in "watch mode"
2422

2523
## Running the test application
2624

27-
- `cd test-app`
2825
- `pnpm start`
2926
- Visit the test application at [http://localhost:4200](http://localhost:4200).
3027

0 commit comments

Comments
 (0)