Skip to content

Commit

Permalink
Merge pull request #106 from danmindru/maintenance
Browse files Browse the repository at this point in the history
Maintenance, update deps, at support for node 17
  • Loading branch information
danmindru authored Mar 29, 2022
2 parents fa285fc + 3e060d9 commit 0abae5a
Show file tree
Hide file tree
Showing 5 changed files with 9,488 additions and 11,491 deletions.
28 changes: 14 additions & 14 deletions .github/workflows/nodejs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,21 +9,21 @@ jobs:

strategy:
matrix:
node_version: [10, 11, 12, 13, 14]
node_version: [12, 17]
os: [ubuntu-latest, windows-latest, macOS-latest]

steps:
- uses: actions/checkout@v1
- name: Use Node.js ${{ matrix.node_version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node_version }}
- uses: actions/checkout@v1
- name: Use Node.js ${{ matrix.node_version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node_version }}

- name: npm install & test
run: |
npm -v
node -v
npm install
npm run test
env:
CI: true
- name: npm install & test
run: |
npm -v
node -v
npm install
npm run test
env:
CI: true
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ $ npm install
$ npm start # By default, templates will be created in `./dist` and HTML & CSS files in './templates' will be watched for changes.
```

> Note: works well with node v10+. Earlier and later versions might also work.
> ⚠️ Note: tested with node versions `12-17`. Earlier and later versions might also work.
### Configuring

Expand Down
Loading

0 comments on commit 0abae5a

Please sign in to comment.