Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Node 20 for master/1.X branch #77

Open
wants to merge 13 commits into
base: master
Choose a base branch
from
13 changes: 7 additions & 6 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ version: 2.1
defaults: &defaults
working_directory: ~/repo
docker:
- image: circleci/node:12
- image: cimg/node:20.17.0

jobs:
build:
Expand Down Expand Up @@ -56,11 +56,11 @@ jobs:
command: npm version patch -m "[skip ci] updated to v%s. published to npm." --yes
- run:
name: Push changes to Github
command: git push -u origin && git push --tags
command: git push -u origin HEAD && git push --tags
- run:
name: Publishing packages to npm
command: npm publish


workflows:
version: 2
Expand All @@ -74,11 +74,12 @@ workflows:
requires:
- build
- deploy:
context:
- node
context: [ npm-publish ]
requires:
- lint-check
- unit-tests
filters:
branches:
only: master
only:
- master
- 0.x
1 change: 1 addition & 0 deletions .nvmrc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
v20.17.0
Loading