55 branches :
66 - main
77 - alpha
8- - ' alpha-*'
8+ - " alpha-*"
99 - beta
10- - ' beta-*'
10+ - " beta-*"
1111 pull_request :
1212
1313permissions :
2626 - uses : actions/checkout@v4
2727 - uses : actions/setup-node@v4
2828 with :
29- node-version : 22
29+ node-version-file : " .nvmrc "
3030 - uses : actions/cache@v4
3131 with :
3232 path : |
8282 - uses : actions/checkout@v4
8383 - uses : actions/setup-node@v4
8484 with :
85- node-version : 22
85+ node-version-file : " .nvmrc "
8686 - name : Start docker containers
8787 if : ${{ matrix.package == 'datasource-mongo' || matrix.package == 'datasource-mongoose' || matrix.package == 'datasource-sql' || matrix.package == 'datasource-sequelize' }}
8888 run : docker compose -f ./packages/${{ matrix.package }}/docker-compose.yml up -d; sleep 5
@@ -137,7 +137,7 @@ jobs:
137137 - uses : actions/checkout@v4
138138 - uses : actions/setup-node@v4
139139 with :
140- node-version : 22
140+ node-version-file : " .nvmrc "
141141 - name : Restore dependencies from cache
142142 uses : actions/cache/restore@v4
143143 with :
@@ -179,7 +179,7 @@ jobs:
179179 persist-credentials : false # GITHUB_TOKEN must not be set for the semantic release
180180 - uses : actions/setup-node@v4
181181 with :
182- node-version : 22
182+ node-version-file : " .nvmrc "
183183 - name : Restore dependencies from cache
184184 uses : actions/cache/restore@v4
185185 with :
@@ -198,8 +198,8 @@ jobs:
198198 fail-on-cache-miss : true
199199 - name : Disable workspaces-update
200200 run : npm config set workspaces-update false
201- - name : ' Run multi-semantic-release'
202- run : ' $(yarn bin)/multi-semantic-release --deps.bump=override'
201+ - name : " Run multi-semantic-release"
202+ run : " $(yarn bin)/multi-semantic-release --deps.bump=override"
203203 env :
204204 GITHUB_TOKEN : ${{ secrets.GH_TOKEN }}
205205 GIT_AUTHOR_EMAIL : ${{ secrets.GIT_AUTHOR_EMAIL }}
@@ -215,7 +215,7 @@ jobs:
215215 environment :
216216 name : github-pages
217217 url : ${{ steps.deployment.outputs.page_url }}
218- if : github.event_name == 'push' && github.ref == 'refs/heads/main'
218+ if : github.event_name == 'push' && github.ref == 'refs/heads/main'
219219 needs : [build-api-reference, send-coverage, lint]
220220 steps :
221221 - name : Setup Pages
0 commit comments