Skip to content

Commit

Permalink
chore: switch to pnpm
Browse files Browse the repository at this point in the history
  • Loading branch information
kgajera committed Jun 12, 2022
1 parent 6dc0bc6 commit 38e3e9d
Show file tree
Hide file tree
Showing 4 changed files with 9,048 additions and 8,597 deletions.
23 changes: 17 additions & 6 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,13 +11,24 @@ jobs:

steps:
- uses: actions/checkout@v3

- name: Use Node.js
uses: actions/setup-node@v3
with:
node-version: '16.x'
- name: Install dependencies
run: yarn
- run: yarn build
- run: yarn format:check
- run: yarn lint
- run: yarn test -- --watch=false --progress=false --browsers=ChromeHeadlessCI

- uses: pnpm/[email protected]
with:
version: 7

- name: Use Node.js
uses: actions/setup-node@v2
with:
node-version: '16.x'
cache: 'pnpm'

- run: pnpm install
- run: pnpm build
- run: pnpm format:check
- run: pnpm lint
- run: pnpm test -- --watch=false --progress=false --browsers=ChromeHeadlessCI
10 changes: 5 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -42,17 +42,17 @@
"@typescript-eslint/eslint-plugin": "5.17.0",
"@typescript-eslint/parser": "5.17.0",
"eslint": "^8.12.0",
"husky": "^4.2.3",
"jasmine-core": "~3.6.0",
"husky": "^8.0.1",
"jasmine-core": "~3.8.0",
"jasmine-spec-reporter": "~5.0.0",
"karma": "~6.3.1",
"karma-chrome-launcher": "~3.1.0",
"karma-coverage-istanbul-reporter": "~3.0.2",
"karma-jasmine": "~4.0.0",
"karma-jasmine-html-reporter": "^1.5.0",
"ng-packagr": "^13.3.1",
"prettier": "^1.19.1",
"pretty-quick": "^2.0.1",
"prettier": "^2.6.2",
"pretty-quick": "^3.1.3",
"ts-node": "~8.3.0",
"typescript": "~4.6.3"
},
Expand All @@ -61,4 +61,4 @@
"pre-commit": "pretty-quick --staged"
}
}
}
}
Loading

0 comments on commit 38e3e9d

Please sign in to comment.