File tree Expand file tree Collapse file tree 6 files changed +24
-23
lines changed Expand file tree Collapse file tree 6 files changed +24
-23
lines changed Original file line number Diff line number Diff line change 77# ######################################
88# Start the job on all push to master #
99# ######################################
10- name : ' Build & Deploy - ALPHA'
10+ name : " Build & Deploy - ALPHA"
1111on :
1212 push :
1313 branches :
@@ -26,13 +26,13 @@ jobs:
2626 steps :
2727 - uses : actions/checkout@v4
2828 # Setup .npmrc file to publish to npm
29- - uses : actions/setup-node@v4
29+ - uses : actions/setup-node@v6
3030 with :
31- node-version : ' 18.x '
32- registry-url : ' https://registry.npmjs.org'
31+ node-version : " 22.x "
32+ registry-url : " https://registry.npmjs.org"
3333 always-auth : true
3434 # Defaults to the user or organization that owns the workflow file
35- scope : ' nvuillam'
35+ scope : " nvuillam"
3636 - run : yarn
3737 - run : yarn config set version-git-tag false
3838 - run : ALPHAID=$(date '+%Y%m%d%H%M') && yarn version --prepatch --preid="alpha$ALPHAID"
Original file line number Diff line number Diff line change 77# ######################################
88# Start the job on all push to master #
99# ######################################
10- name : ' Build & Deploy - Beta'
10+ name : " Build & Deploy - Beta"
1111on :
1212 push :
1313 branches :
14- - ' main'
14+ - " main"
1515
1616permissions : read-all
1717
@@ -25,13 +25,13 @@ jobs:
2525 steps :
2626 - uses : actions/checkout@v4
2727 # Setup .npmrc file to publish to npm
28- - uses : actions/setup-node@v4
28+ - uses : actions/setup-node@v6
2929 with :
30- node-version : ' 18.x '
31- registry-url : ' https://registry.npmjs.org'
30+ node-version : " 22.x "
31+ registry-url : " https://registry.npmjs.org"
3232 always-auth : true
3333 # Defaults to the user or organization that owns the workflow file
34- scope : ' nvuillam'
34+ scope : " nvuillam"
3535 - run : yarn
3636 - run : yarn config set version-git-tag false
3737 - run : BETAID=$(date '+%Y%m%d%H%M') && yarn version --prepatch --preid="beta$BETAID"
Original file line number Diff line number Diff line change 77# ######################################
88# Start the job on all push to master #
99# ######################################
10- name : ' Build & Deploy - RELEASE'
10+ name : " Build & Deploy - RELEASE"
1111on :
1212 release :
1313 # Want to run the automation when a release is created
14- types : [' created' ]
14+ types : [" created" ]
1515
1616permissions : read-all
1717
@@ -24,12 +24,12 @@ jobs:
2424 steps :
2525 - uses : actions/checkout@v4
2626 # Setup .npmrc file to publish to npm
27- - uses : actions/setup-node@v4
27+ - uses : actions/setup-node@v6
2828 with :
29- node-version : ' 18.x '
30- registry-url : ' https://registry.npmjs.org'
29+ node-version : " 22.x "
30+ registry-url : " https://registry.npmjs.org"
3131 # Defaults to the user or organization that owns the workflow file
32- scope : ' nvuillam'
32+ scope : " nvuillam"
3333 - run : yarn
3434 - run : yarn publish
3535 env :
Original file line number Diff line number Diff line change 77# ######################################
88# Start the job on all push to master #
99# ######################################
10- name : ' Test'
10+ name : " Test"
1111on :
1212 push : # Comment this line to trigger action only on pull-requests (not recommended if you don't pay for GH Actions)
1313 pull_request :
@@ -25,11 +25,11 @@ jobs:
2525 steps :
2626 - uses : actions/checkout@v4
2727 # Setup .npmrc file to publish to npm
28- - uses : actions/setup-node@v4
28+ - uses : actions/setup-node@v6
2929 with :
30- node-version : ' 18.x '
31- registry-url : ' https://registry.npmjs.org'
30+ node-version : " 22.x "
31+ registry-url : " https://registry.npmjs.org"
3232 # Defaults to the user or organization that owns the workflow file
33- scope : ' nvuillam'
33+ scope : " nvuillam"
3434 - run : yarn
3535 - run : yarn test
Original file line number Diff line number Diff line change 22
33## Beta
44
5+ - Upgrade NodeJs minimum version to Node 22
56- Fix yarn dependencies warnings
67
78## [ 3.2.0] 2024-08-22
Original file line number Diff line number Diff line change 4141 "prepublish" : " tsc"
4242 },
4343 "engines" : {
44- "node" : " >=18 "
44+ "node" : " >=20 "
4545 },
4646 "files" : [
4747 " dist" ,
You can’t perform that action at this time.
0 commit comments