Skip to content

Commit

Permalink
style: use npm install alias
Browse files Browse the repository at this point in the history
  • Loading branch information
Fdawgs committed May 1, 2022
1 parent 02c9166 commit c52fc0a
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ jobs:
node-version: 16

- name: Install
run: npm install --ignore-scripts
run: npm i --ignore-scripts

- name: Run ESLint
run: npm run lint
Expand Down Expand Up @@ -100,7 +100,7 @@ jobs:
node-version: ${{ matrix.node }}

- name: Install
run: npm install --ignore-scripts
run: npm i --ignore-scripts

- name: Run tests
run: npm run jest:coverage
Expand Down
2 changes: 1 addition & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ Other processes and specifications that are in use in this repository are:

This repository requires that you have [Node.js](https://nodejs.org) >=12.0.0 installed.

With that in place, you can fork the repository, clone it, and then run `npm install` to install all dependencies.
With that in place, you can fork the repository, clone it, and then run `npm i` to install all dependencies.

### Development Workflow

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ You can read more about the issues surrounding Google's FLoC [on EFF](https://ww
Install using [`npm`](https://www.npmjs.com/package/fastify-floc-off):

```bash
npm install fastify-floc-off
npm i fastify-floc-off
```

Or [`yarn`](https://yarnpkg.com/en/package/fastify-floc-off):
Expand Down

0 comments on commit c52fc0a

Please sign in to comment.