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
6 changes: 3 additions & 3 deletions .github/workflows/ci-cd.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
fetch-depth: 0
- uses: actions/setup-node@v3
with:
node-version: 18
node-version: 22
cache: "npm"
- run: npm ci --ignore-scripts
- run: npx commitlint --from HEAD~${{ github.event.pull_request.commits }} --to HEAD
Expand All @@ -30,7 +30,7 @@ jobs:
strategy:
matrix:
# add/remove versions as we move support forward
node-version: [14, 16, 18]
node-version: [20, 22]

steps:
- uses: actions/checkout@v3
Expand All @@ -56,7 +56,7 @@ jobs:
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: 18
node-version: 22
cache: "npm"
- run: npm ci
- name: Release
Expand Down
13 changes: 13 additions & 0 deletions .npmignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,17 @@
examples/
test/
docs/
docsrc/
scripts/
coverage/


.DS_Store
.vscode/
.idea/
.github/
.env
env.example
README.md
*.tgz

Loading