Skip to content

Commit 621dfb8

Browse files
committed
Move from Yarn to pnpm
1 parent 74593c5 commit 621dfb8

File tree

7 files changed

+5051
-4949
lines changed

7 files changed

+5051
-4949
lines changed

.github/workflows/test.yml

+43-12
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,29 @@
11
name: Test
2-
"on":
3-
push: null
4-
pull_request: null
5-
env:
6-
FORCE_COLOR: 2
2+
on:
3+
push:
4+
pull_request:
75
jobs:
86
full:
9-
name: Node.js 16 Full
7+
name: Node.js 17 Full
108
runs-on: ubuntu-latest
119
steps:
1210
- name: Checkout the repository
1311
uses: actions/checkout@v2
12+
- name: Install pnpm
13+
uses: pnpm/action-setup@v2
14+
with:
15+
version: latest
1416
- name: Install Node.js
1517
uses: actions/setup-node@v2
1618
with:
1719
node-version: 17
20+
cache: pnpm
1821
- name: Install dependencies
19-
uses: bahmutov/npm-install@v1
22+
run: pnpm install --frozen-lockfile --ignore-scripts
2023
- name: Run tests
21-
run: yarn test
24+
run: pnpm test
25+
env:
26+
FORCE_COLOR: 2
2227
short:
2328
runs-on: ubuntu-latest
2429
strategy:
@@ -27,18 +32,44 @@ jobs:
2732
- 16
2833
- 14
2934
- 12
30-
- 10
3135
name: Node.js ${{ matrix.node-version }} Quick
3236
steps:
3337
- name: Checkout the repository
3438
uses: actions/checkout@v2
39+
- name: Install pnpm
40+
uses: pnpm/action-setup@v2
41+
with:
42+
version: latest
3543
- name: Install Node.js ${{ matrix.node-version }}
3644
uses: actions/setup-node@v2
3745
with:
3846
node-version: ${{ matrix.node-version }}
47+
cache: pnpm
3948
- name: Install dependencies
40-
uses: bahmutov/npm-install@v1
49+
run: pnpm install --frozen-lockfile --ignore-scripts
50+
- name: Run unit tests
51+
run: pnpm unit
52+
env:
53+
FORCE_COLOR: 2
54+
old:
55+
runs-on: ubuntu-latest
56+
name: Node.js 10 Quick
57+
steps:
58+
- name: Checkout the repository
59+
uses: actions/checkout@v2
60+
- name: Install pnpm
61+
uses: pnpm/action-setup@v1
4162
with:
42-
install-command: yarn --frozen-lockfile --ignore-engines
63+
version: 3
64+
env:
65+
ACTIONS_ALLOW_UNSECURE_COMMANDS: true
66+
- name: Install Node.js 10
67+
uses: actions/setup-node@v2
68+
with:
69+
node-version: 10
70+
- name: Install dependencies
71+
run: pnpm install --frozen-lockfile --ignore-scripts
4372
- name: Run unit tests
44-
run: npx jest
73+
run: pnpm unit
74+
env:
75+
FORCE_COLOR: 2

.gitignore

-2
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,6 @@ Thumbs.db
66
# Logs
77

88
*.log
9-
npm-debug.log*
10-
yarn-debug.log*
119

1210
# Build
1311

.npmignore

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
.gitignore
55
.editorconfig
66

7-
npm-debug.log
7+
*.log
88

99
# DIRECTORIES
1010

.npmrc

-1
This file was deleted.

package.json

+1
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@
1313
"scripts": {
1414
"lint": "standard --env jest",
1515
"test": "npm run lint && jest --verbose --coverage",
16+
"unit": "jest --verbose",
1617
"docs": "jsdoc2md src/*.js > DOCS.md",
1718
"clean": "npx rimraf ./coverage",
1819
"release": "standard-version"

0 commit comments

Comments
 (0)