Skip to content

Commit 2c8f428

Browse files
committed
Use npm instead of yarn
1 parent 15b6f49 commit 2c8f428

5 files changed

Lines changed: 6888 additions & 2560 deletions

File tree

.github/workflows/nodejs.yml

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -4,21 +4,19 @@ on: [push, pull_request]
44

55
jobs:
66
build:
7-
87
runs-on: ubuntu-latest
9-
108
steps:
119
- uses: actions/checkout@v6
1210
- uses: actions/setup-node@v6
1311
with:
1412
node-version: 24
15-
- name: yarn install
16-
run: yarn install
13+
- name: npm install
14+
run: npm ci
1715
- name: build
18-
run: yarn build
16+
run: npm run build
1917
env:
2018
CI: true
2119
- name: lint
22-
run: yarn lint
20+
run: npm run lint
2321
env:
2422
CI: true

README.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,9 @@ const defaultOptions = {
4141

4242
### 1. Install the plugin
4343

44-
`yarn add @stklcode/chartist-plugin-tooltip`
44+
```shell
45+
npm add @stklcode/chartist-plugin-tooltip`
46+
```
4547

4648
### 2. Include JS
4749

0 commit comments

Comments
 (0)