fix jasmine tsc settings #13
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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 version | |
on: | |
push: | |
branches: | |
- 'v*.*-beta' | |
tags: | |
- 'v*.*.*-beta' | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/[email protected] | |
- uses: actions/[email protected] | |
with: | |
node-version: 22 | |
- run: npm config set legacy-peer-deps true=true | |
- run: npm ci | |
- 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 config set legacy-peer-deps true=true | |
- run: npm ci | |
- run: npm publish --tag ${GITHUB_REF##*/} | |
env: | |
NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}} |