version-released #8
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
name: publish | |
on: | |
repository_dispatch: | |
types: [version-released] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v3 | |
- name: Set up Node.js | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 18 | |
- name: Install of node dependencies | |
run: npm install | |
- name: Run lint | |
run: npm run lint | |
- name: Run tests and check coverage | |
run: npm run test:coverage | |
publish-to-npm-and-gpr: | |
needs: build | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v3 | |
- name: Set up Node.js | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 18 | |
registry-url: 'https://registry.npmjs.org' | |
- name: Install of node dependencies | |
run: npm install | |
- name: Publish to NPM | |
run: | | |
npm config set //registry.npmjs.org/:_authToken=$NODE_AUTH_TOKEN | |
npm config list | |
npm publish --access public | |
env: | |
NODE_AUTH_TOKEN: ${{ secrets.NPM_ACCESS_TOKEN }} | |
- name: Set up Node.js | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 18 | |
registry-url: 'https://npm.pkg.github.com' | |
scope: '@reportportal' | |
- name: Publish to GPR | |
run: | | |
npm config set //npm.pkg.github.com/:_authToken=$NODE_AUTH_TOKEN | |
npm config set scope '@reportportal' | |
npm config list | |
npm publish | |
env: | |
NODE_AUTH_TOKEN: ${{ secrets.GH_TOKEN }} |