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
16 changes: 5 additions & 11 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,20 +14,14 @@ jobs:
strategy:
matrix:
node-version:
- 7
- 8
- 9
- 10
- 11
- 13
- 14
- 15
- 20
- 18
- 16
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- run: npm install
- run: npm run pretest
- run: npm test
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ const ansiChannels = convert.ansi16.channels; // 1
# Install

```sh
$ npm install color-convert
npm install color-convert
```

# API
Expand Down Expand Up @@ -117,7 +117,7 @@ channel | full-scale value
### gray
channel | full-scale value
---|---
g | 100
gray | 100

# Contribute

Expand Down
Loading