Skip to content
Merged
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
8 changes: 4 additions & 4 deletions .github/workflows/cicd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: '20'
node-version: '22'
cache: 'npm'

- name: Install dependencies
Expand All @@ -38,7 +38,7 @@ jobs:
# Disabled until tests are implemented
# name: Unit Tests
# run: npm run test:unit

- name: Build
run: npm run build

Expand All @@ -47,8 +47,8 @@ jobs:

- name: E2E Tests
run: npm run test:e2e
# release does a second build due to the prepublishOnly script.

# release does a second build due to the prepublishOnly script.
# that's okay we want that to happen to prevent publishing stale local builds.
# if performance becomes an issue, we can look into preventing the double build.
- name: Release
Expand Down