Skip to content

Commit

Permalink
fix: added external workflow (#67)
Browse files Browse the repository at this point in the history
Co-authored-by: Amulya Kashyap <amulyak@adobe.com>
  • Loading branch information
amulyakashyap09 and Amulya Kashyap authored Feb 6, 2024
1 parent 0fce67e commit 68f4ec7
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 62 deletions.
15 changes: 1 addition & 14 deletions .github/workflows/on-release-creation-publish-to-npm.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,17 +6,4 @@ on:

jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3.3.0
# Setup .npmrc file to publish to npm
# See https://docs.github.com/en/actions/publishing-packages/publishing-nodejs-packages
- uses: actions/setup-node@v3.6.0
with:
node-version: 16
registry-url: "https://registry.npmjs.org"
- run: npm install
- run: npm test
- run: npm publish --access public
env:
NODE_AUTH_TOKEN: ${{ secrets.ADOBE_BOT_NPM_TOKEN }}
uses: adobe/aio-reusable-workflows/.github/workflows/on-release-creation-publish-to-npm.yml@main
27 changes: 1 addition & 26 deletions .github/workflows/prerelease.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,29 +16,4 @@ on:
default: '@adobe/aio-cli-lib-app-config,@adobe/aio-cli-lib-console,@adobe/aio-lib-console-project-installation,@adobe/aio-lib-core-config,@adobe/aio-lib-core-logging,@adobe/aio-lib-env,@adobe/aio-lib-ims,@adobe/aio-lib-templates'
jobs:
checkout:
name: checkout
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- run: |
git config user.name github-actions
git config user.email github-actions@github.com
- uses: actions/setup-node@v1
with:
node-version: 18
- run: |
npm install
npm test
- name: Update your package.json with an npm pre-release version
id: pre-release-version
uses: adobe/update-prerelease-npm-version@v1.0.0
with:
pre-release-tag: ${{ github.event.inputs.pre-release-tag }}
dependencies-to-update: ${{ github.event.inputs.dependencies-to-update }}
dependencies-to-update-version-tag: ${{ github.event.inputs.dist-tag }}
- run: echo pre-release-version - ${{ steps.pre-release-version.outputs.pre-release-version }}
- uses: JS-DevTools/npm-publish@v1
with:
token: ${{ secrets.ADOBE_BOT_NPM_TOKEN }}
tag: ${{ github.event.inputs.dist-tag }}
access: 'public'
uses: adobe/aio-reusable-workflows/.github/workflows/prerelease.yml@main
23 changes: 1 addition & 22 deletions .github/workflows/run-tests-on-pr-and-push-to-main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,25 +11,4 @@ on:

jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
node-version: [18.x, 20.x]
os: [ubuntu-latest, windows-latest]
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- run: npm i --package-lock --package-lock-only
- run: npm ci
- run: npm run build --if-present
- run: npm test
- name: upload coverage
if: success()
uses: codecov/codecov-action@v3.1.1
with:
name: ${{ runner.os }} node.js ${{ matrix.node-version }}
uses: adobe/aio-reusable-workflows/.github/workflows/node.js.yml@main

0 comments on commit 68f4ec7

Please sign in to comment.