Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ version: 2.1
executors:
mask_node:
docker:
- image: circleci/node:15.3.0
- image: cimg/node:17.5
working_directory: ~/repo
commands:
restore_workspace:
Expand All @@ -24,8 +24,8 @@ jobs:
keys:
- v3-mask-cache-pnpm
- run:
name: Install PNPM
command: sudo npm install -g pnpm@6.4.0
name: Enable corepack
command: sudo corepack enable
- run:
name: Install Dependencies
command: pnpm install --frozen-lockfile --store-dir ~/.pnpm/
Expand All @@ -43,8 +43,8 @@ jobs:
steps:
- restore_workspace
- run:
name: Install PNPM
command: sudo npm install -g pnpm@6.4.0
name: Enable corepack
command: sudo corepack enable
- run:
name: Build Mask Network
command: npx gulp build-ci
Expand Down
4 changes: 1 addition & 3 deletions .github/workflows/compile.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,9 +28,7 @@ jobs:
with:
ref: ${{ github.event.pull_request.head.sha }}
fetch-depth: 0
- uses: pnpm/action-setup@v2
with:
version: '6.23.1'
- uses: pnpm/action-setup@v2.2.1
- uses: actions/setup-node@v2
with:
node-version: '16'
Expand Down
4 changes: 1 addition & 3 deletions .github/workflows/deploy-proxy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,7 @@ jobs:
with:
ref: ${{ github.event.pull_request.head.sha }}
fetch-depth: 0
- uses: pnpm/action-setup@v2
with:
version: latest
- uses: pnpm/action-setup@v2.2.1
- uses: actions/setup-node@v2
with:
cache: pnpm
Expand Down
12 changes: 3 additions & 9 deletions .github/workflows/linters.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,9 +52,7 @@ jobs:
- uses: actions/checkout@v2
with:
ref: ${{ github.event.pull_request.head.sha }}
- uses: pnpm/action-setup@v2
with:
version: "6.23.1"
- uses: pnpm/action-setup@v2.2.1
- uses: actions/setup-node@v2
with:
node-version: "16"
Expand All @@ -71,9 +69,7 @@ jobs:
- uses: actions/checkout@v2
with:
ref: ${{ github.event.pull_request.head.sha }}
- uses: pnpm/action-setup@v2
with:
version: "6.23.1"
- uses: pnpm/action-setup@v2.2.1
- uses: actions/setup-node@v2
with:
node-version: "16"
Expand All @@ -88,9 +84,7 @@ jobs:
- uses: actions/checkout@v2
with:
ref: ${{ github.event.pull_request.head.sha }}
- uses: pnpm/action-setup@v2
with:
version: "6.23.1"
- uses: pnpm/action-setup@v2.2.1
- uses: actions/setup-node@v2
with:
node-version: "16"
Expand Down
4 changes: 1 addition & 3 deletions .github/workflows/netlify.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,9 +27,7 @@ jobs:
with:
ref: ${{ github.event.pull_request.head.sha }}
fetch-depth: 0
- uses: pnpm/action-setup@v2
with:
version: '6.23.1'
- uses: pnpm/action-setup@v2.2.1
- uses: actions/setup-node@v2
with:
node-version: '16'
Expand Down
5 changes: 5 additions & 0 deletions cspell.json
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,7 @@
"contrib",
"contribs",
"cooldown",
"corepack",
"counterparty",
"cyberconnect",
"cyberlab",
Expand Down Expand Up @@ -399,6 +400,10 @@
{
"filename": "**/qya-AA.json",
"enabled": false
},
{
"filename": ".circleci/config.yml",
"ignoreWords": ["cimg"]
}
]
}
4 changes: 2 additions & 2 deletions docs/caveats.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@ This section is going to help you to set up the development environment of Mask

To develop Mask Network, you need to have ...

- Node 15 or higher
- [pnpm](https://pnpm.js.org) 5+
- Node 16 or higher
- [pnpm](https://pnpm.js.org) 6.32.1

## Development

Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "mask-network",
"packageManager": "pnpm@6.30.1",
"packageManager": "pnpm@6.32.1",
"version": "2.5.0",
"private": true,
"license": "AGPL-3.0-or-later",
Expand Down Expand Up @@ -79,7 +79,7 @@
},
"engines": {
"node": ">=16.0.0",
"pnpm": ">=6"
"pnpm": ">=6.32.1"
},
"pnpm": {
"overrides": {
Expand Down