Skip to content

Commit

Permalink
Build the package and update scripts
Browse files Browse the repository at this point in the history
  • Loading branch information
NullVoxPopuli committed Jul 9, 2022
1 parent e13269c commit 6c873e9
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 7 deletions.
3 changes: 3 additions & 0 deletions .github/workflows/ci-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ jobs:
steps:
- uses: actions/checkout@v3
- uses: ./.github/actions/pnpm
- run: pnpm build
- name: Lint
run: pnpm lint
- name: Run Tests
Expand All @@ -34,6 +35,7 @@ jobs:
steps:
- uses: actions/checkout@v3
- uses: ./.github/actions/pnpm
- run: pnpm build
- run: tsc --noEmit
working-directory: tests

Expand All @@ -44,6 +46,7 @@ jobs:
steps:
- uses: actions/checkout@v3
- uses: ./.github/actions/pnpm
- run: pnpm build

- name: auto-dist-tag
run: npx auto-dist-tag@1 --write
Expand Down
14 changes: 7 additions & 7 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,17 +8,17 @@
"license": "MIT",
"author": "",
"scripts": {
"prepare": "yarn build",
"build": "yarn workspace @ember/string run build",
"prepare": "pnpm build",
"build": "pnpm --filter @ember/string build",

"start": "concurrently 'npm:start:*' --restart-after 5000 --prefix-colors cyan,white,yellow",
"start:addon": "yarn workspace @ember/string run start",
"start:test": "yarn workspace test-app run start",
"start:addon": "pnpm --filter @ember/string start",
"start:test": "pnpm --filter test-app start",

"lint": "yarn workspaces run lint",
"lint:fix": "yarn workspaces run lint:fix",
"lint": "pnpm --filter '*' lint",
"lint:fix": "pnpm --filter '*' lint:fix",

"test": "yarn workspaces run test"
"test": "pnpm --filter '*' test"
},
"volta": {
"node": "18.4.0",
Expand Down

0 comments on commit 6c873e9

Please sign in to comment.