Skip to content

Commit

Permalink
Merge branch 'v2.4-ts' into v2.4-temp
Browse files Browse the repository at this point in the history
  • Loading branch information
jeanmachuca authored Oct 21, 2024
2 parents 22315ee + 1346612 commit 3d4f5f8
Show file tree
Hide file tree
Showing 14 changed files with 5,773 additions and 4,997 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/npmpublish-beta.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@ jobs:
- uses: actions/[email protected]
- uses: actions/[email protected]
with:
node-version: 16
- run: npm ci
node-version: 22
- run: npm i && npm ci --install-strategy=nested
- run: npm test

publish-npm:
Expand All @@ -28,11 +28,11 @@ jobs:
- uses: actions/[email protected]
- uses: actions/[email protected]
with:
node-version: 16
node-version: 22
registry-url: https://registry.npmjs.org/
- name: Set up NPM authentication
run: echo "registry=https://registry.npmjs.org/:_authToken=${{secrets.NPM_TOKEN}}" >> ~/.npmrc
- run: npm ci
- run: npm i && npm ci --install-strategy=nested
- run: npm publish --tag ${GITHUB_REF##*/}
env:
NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}}
8 changes: 4 additions & 4 deletions .github/workflows/npmpublish-lts.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@ jobs:
- uses: actions/[email protected]
- uses: actions/[email protected]
with:
node-version: 16
- run: npm ci
node-version: 22
- run: npm i && npm ci --install-strategy=nested
- run: npm test

publish-npm:
Expand All @@ -28,11 +28,11 @@ jobs:
- uses: actions/[email protected]
- uses: actions/[email protected]
with:
node-version: 16
node-version: 22
registry-url: https://registry.npmjs.org/
- name: Set up NPM authentication
run: echo "registry=https://registry.npmjs.org/:_authToken=${{secrets.NPM_TOKEN}}" >> ~/.npmrc
- run: npm ci
- run: npm i && npm ci --install-strategy=nested
- run: npm publish --tag ${GITHUB_REF##*/}
env:
NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}}
8 changes: 4 additions & 4 deletions .github/workflows/npmpublish-main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@ jobs:
- uses: actions/[email protected]
- uses: actions/[email protected]
with:
node-version: 16
- run: npm ci
node-version: 22
- run: npm i && npm ci --install-strategy=nested
- run: npm test

publish-npm:
Expand All @@ -28,11 +28,11 @@ jobs:
- uses: actions/[email protected]
- uses: actions/[email protected]
with:
node-version: 16
node-version: 22
registry-url: https://registry.npmjs.org/
- name: Set up NPM authentication
run: echo "registry=https://registry.npmjs.org/:_authToken=${{secrets.NPM_TOKEN}}" >> ~/.npmrc
- run: npm ci
- run: npm i && npm ci --install-strategy=nested
- run: npm publish
env:
NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}}
38 changes: 38 additions & 0 deletions .github/workflows/npmpublish-ts.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
# This workflow will run tests using node and then publish a package to GitHub Packages when a release is created
# For more information see: https://help.github.com/actions/language-and-framework-guides/publishing-nodejs-packages

name: Node.js Publish Beta TypeScript version

on:
push:
branches:
- 'v*.*-ts'
tags:
- 'v*.*.*-ts'

jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/[email protected]
- uses: actions/[email protected]
with:
node-version: 22
- run: npm i && npm ci --install-strategy=nested
- run: npm test

publish-npm:
needs: build
runs-on: ubuntu-latest
steps:
- uses: actions/[email protected]
- uses: actions/[email protected]
with:
node-version: 22
registry-url: https://registry.npmjs.org/
- name: Set up NPM authentication
run: echo "registry=https://registry.npmjs.org/:_authToken=${{secrets.NPM_TOKEN}}" >> ~/.npmrc
- run: npm i && npm ci --install-strategy=nested
- run: npm publish --tag ${GITHUB_REF##*/}
env:
NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}}
Binary file modified README-es.pdf
Binary file not shown.
Binary file modified README.pdf
Binary file not shown.
Loading

0 comments on commit 3d4f5f8

Please sign in to comment.