Skip to content

Commit

Permalink
Fix: Versions in CI
Browse files Browse the repository at this point in the history
  • Loading branch information
sandypockets committed Dec 8, 2023
1 parent 4e263f6 commit 873a8e3
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,14 @@ jobs:

strategy:
matrix:
node-version: [14.x, 16.x]
node-version: [16.x] # Start with one version for testing

steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node-version }}
- run: npm cache clean --force
- run: npm ci
- run: npm run test
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "easy-dates-picker",
"version": "0.0.16",
"version": "0.0.17",
"description": "A super lightweight vanilla JS date picker",
"main": "dist/datepicker.bundle.js",
"files": [
Expand Down

0 comments on commit 873a8e3

Please sign in to comment.