Skip to content
Open
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 .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ version: 2.0
jobs:
lint:
docker:
- image: cimg/go:1.21-node
- image: cimg/go:1.25-node
steps:
- run: node --version
- run: npm --version
Expand All @@ -25,7 +25,7 @@ jobs:
- run: yarn run lint
test-unit:
docker:
- image: cimg/go:1.21-node
- image: cimg/go:1.25-node
steps:
- run: node --version
- run: npm --version
Expand All @@ -49,7 +49,7 @@ jobs:
- run: yarn codecov
test-e2e:
docker:
- image: cimg/go:1.21-node
- image: cimg/go:1.25-node
steps:
- run: node --version
- run: npm --version
Expand All @@ -72,7 +72,7 @@ jobs:
- run: yarn run test:e2e
demo:
docker:
- image: cimg/go:1.21-node
- image: cimg/go:1.25-node
steps:
- run: node --version
- run: npm --version
Expand Down