Skip to content

Commit

Permalink
chore: use pnpm
Browse files Browse the repository at this point in the history
  • Loading branch information
aminya committed Aug 12, 2020
1 parent b582217 commit 1231117
Show file tree
Hide file tree
Showing 5 changed files with 6,954 additions and 9,164 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
run: apm -v
- name: Install APM dependencies
run: |
apm ci # uses locked module. use `apm install` for non-locked
apm install
- name: Atom Package dependencies
run: |
npm install array-to-txt-file
Expand All @@ -55,7 +55,7 @@ jobs:
node-version: "14.x"
- name: Install NPM dependencies
run: |
npm ci # uses locked module. use `npm install` for non-locked
npm install
- name: Lint ✨
run: npm run lint

Expand All @@ -71,7 +71,7 @@ jobs:
with:
node-version: "14.x"
- name: NPM install
run: npm ci
run: npm install
- name: Build and Commit
run: npm run build-commit
- name: Release 🎉
Expand Down
12 changes: 8 additions & 4 deletions .github/workflows/bump_deps.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,17 +5,21 @@ on:
- cron: "0 0 * * *"

jobs:
build:
Bump_Dependencies:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2-beta
with:
node-version: "14"
- name: Setup PNPM
uses: pnpm/action-setup@v1.2.0
with:
version: 4.11.1
- run: |
npm ci
npm run bump
npm install
pnpm install
pnpm run bump
pnpm install
- uses: peter-evans/create-pull-request@v2
with:
token: ${{ secrets.GITHUB_TOKEN }}
Expand Down
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ Thumbs.db

# Node
node_modules
package-lock.json

# TypeScript
*.tsbuildinfo
Expand Down
Loading

0 comments on commit 1231117

Please sign in to comment.