We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0703574 commit a778c8aCopy full SHA for a778c8a
.github/actions/publish-types/action.yml
@@ -28,6 +28,11 @@ runs:
28
for pkg in ${{ steps.vars.outputs.PKGS }}; do
29
jq --arg version "${{ inputs.VERSION }}" '.dependencies."@dop251/types-goja_nodejs-global" = $version' $pkg/types/package.json > $pkg/types/tmp.json && mv $pkg/types/tmp.json $pkg/types/package.json
30
done
31
+ - name: Setup nodejs
32
+ uses: actions/setup-node@v2
33
+ with:
34
+ node-version: '22'
35
+ registry-url: 'https://registry.npmjs.org'
36
- name: Publish the packages
37
shell: bash
38
run: |
0 commit comments