File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 4545 node-version : " 14.x"
4646 - name : Install NPM dependencies
4747 run : |
48- npm ci # uses locked module. use `npm install` for non-locked
48+ npm install
4949 - name : Lint ✨
5050 run : npm run lint
5151
6161 with :
6262 node-version : " 12.x"
6363 - name : NPM install
64- run : npm ci
64+ run : npm install
6565 - name : Build and Commit
6666 run : npm run build-commit
6767 - name : Release 🎉
Original file line number Diff line number Diff line change @@ -12,10 +12,12 @@ jobs:
1212 - uses : actions/setup-node@v2-beta
1313 with :
1414 node-version : " 14"
15+ - name : Setup PNPM
16+ uses : pnpm/action-setup@v1
1517 - run : |
16- npm ci
17- npm run bump
18- npm install
18+ pnpm install
19+ pnpm run bump
20+ pnpm install
1921 - uses : peter-evans/create-pull-request@v2
2022 with :
2123 token : ${{ secrets.GITHUB_TOKEN }}
Original file line number Diff line number Diff line change @@ -4,6 +4,7 @@ Thumbs.db
44
55# Node
66node_modules
7+ package-lock.json
78
89# TypeScript
910* .tsbuildinfo
You can’t perform that action at this time.
0 commit comments