Skip to content

Commit f047488

Browse files
authored
Merge pull request #3 from atom-ide-community/pnpm
2 parents 5948aa5 + 33fb977 commit f047488

File tree

5 files changed

+6984
-10487
lines changed

5 files changed

+6984
-10487
lines changed

.github/workflows/CI.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ jobs:
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

@@ -61,7 +61,7 @@ jobs:
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 🎉

.github/workflows/bump_deps.yml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff 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 }}

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ Thumbs.db
44

55
# Node
66
node_modules
7+
package-lock.json
78

89
# TypeScript
910
*.tsbuildinfo

0 commit comments

Comments
 (0)