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
4 changes: 2 additions & 2 deletions .github/workflows/deploy-website.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,10 @@ jobs:
steps:
- uses: actions/checkout@v6.0.2

- name: Use Node.js 20.x
- name: Use Node.js 24.x
uses: actions/setup-node@v6
with:
node-version: 20.x
node-version: 24.x
cache: npm

- name: Install root dependencies
Expand Down
8 changes: 5 additions & 3 deletions .github/workflows/node.js.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,18 +14,20 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6.0.2
- name: Use Node.js 20.x
- name: Use Node.js 24.x
uses: actions/setup-node@v6
with:
node-version: 20.x
node-version: 24.x
cache: 'npm'
- run: npm ci
- run: npm run ci
# Only publish from pushes to main. On pull_request runs github.sha is an
# ephemeral merge commit, so publishing there tags a commit that is on no branch.
- name: Publish to NPM if version in package.json has changed
id: publish
if: github.event_name == 'push'
uses: JS-DevTools/npm-publish@v4
with:
token: ${{ secrets.NPM_TOKEN }}
provenance: true
- name: Create tag
if: steps.publish.outputs.type
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "maquette",
"version": "4.1.4",
"version": "4.1.5",
"type": "module",
"description": "Minimalistic Virtual DOM implementation with support for animated transitions.",
"workspaces": [
Expand Down
Loading