Skip to content

Commit

Permalink
Update CI config
Browse files Browse the repository at this point in the history
  • Loading branch information
pascalduez committed Feb 7, 2023
1 parent b711cd7 commit 3488b76
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,13 +16,13 @@ jobs:

strategy:
matrix:
node-version: [12.x, 14.x, 16.x]
node-version: [18.x, lts/*]

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3

- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v2
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: 'yarn'
Expand All @@ -34,7 +34,7 @@ jobs:
run: yarn run test:ci

- name: Upload coverage
uses: codecov/codecov-action@v2
uses: codecov/codecov-action@v3

- name: Lint
run: yarn run lint
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 @@ yarn add postcss postcss-scrollbar --save-dev
## Usage

```js
const fs = require('fs');
const fs = require('node:fs');
const postcss = require('postcss');
const scrollbar = require('postcss-scrollbar');

Expand Down

0 comments on commit 3488b76

Please sign in to comment.