Merge remote-tracking branch 'origin/develop' into feature/SDK-39_wel… #719
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: Build, Test and Publish | |
on: | |
workflow_dispatch: | |
push: | |
branches: | |
- 'main' | |
- 'develop' | |
- 'fix/**' | |
- 'fixes/**' | |
- 'feature/**' | |
- 'feat/**' | |
jobs: | |
build-test-publish: | |
env: | |
NPM_TOKEN: ${{secrets.NPM_TOKEN}} | |
NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}} | |
GH_TOKEN: ${{secrets.GITHUB_TOKEN}} | |
GH_USER: ${{secrets.GH_USER}} | |
GH_EMAIL: ${{secrets.GH_EMAIL}} | |
VC_HTTP_API_AUTH_TOKEN: ${{secrets.VC_HTTP_API_AUTH_TOKEN}} | |
runs-on: ubuntu-latest | |
services: | |
postgres: | |
image: postgres:10.10 | |
env: | |
POSTGRES_USER: postgres | |
POSTGRES_PASSWORD: test123 | |
ports: | |
- 5432:5432 | |
options: --health-cmd pg_isready --health-interval 10s --health-timeout 5s --health-retries 5 | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Use Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version: '20.x' | |
- uses: pnpm/action-setup@v4 | |
with: | |
version: 9 | |
- run: pnpm install | |
- run: pnpm build | |
- name: run integration tests | |
env: | |
INCLUDE_POSTGRES_TESTS: true | |
POSTGRES_HOST: localhost | |
POSTGRES_USER: postgres | |
POSTGRES_PASSWORD: test123 | |
POSTGRES_PORT: 5432 | |
SPHEREON_SSI_MSAL_TENANT_ID: ${{ secrets.SPHEREON_SSI_MSAL_TENANT_ID }} | |
SPHEREON_SSI_MSAL_CLIENT_ID: ${{ secrets.SPHEREON_SSI_MSAL_CLIENT_ID }} | |
SPHEREON_SSI_MSAL_CLIENT_SECRET: ${{ secrets.SPHEREON_SSI_MSAL_CLIENT_SECRET }} | |
SPHEREON_SSI_MSAL_USERNAME: ${{ secrets.SPHEREON_SSI_MSAL_USERNAME }} | |
SPHEREON_SSI_MSAL_PASSWORD: ${{ secrets.SPHEREON_SSI_MSAL_PASSWORD }} | |
run: pnpm test:ci | |
- name: setup git coordinates | |
run: | | |
git remote set-url origin https://Sphereon-Opensource:[email protected]/Sphereon-Opensource/OID4VCI.git | |
git config user.name $GH_USER | |
git config user.email $GH_EMAIL | |
- name: setup npm registry | |
run: | | |
echo "@sphereon:registry=https://registry.npmjs.org/" > .npmrc | |
echo "registry=https://registry.npmjs.org/" >> .npmrc | |
echo "//registry.npmjs.org/:_authToken=$NPM_TOKEN" >> .npmrc | |
# npm whoami | |
- name: diff | |
run: git diff | |
- name: Sets PREID | |
env: | |
name: "${{github.ref_name}}" | |
run: | | |
echo "PRE_ID=${name//[\/_-]/.}" >> $GITHUB_ENV | |
- name: publish @latest when on main | |
if: github.ref == 'refs/heads/main' | |
run: lerna publish --conventional-commits --force-publish --include-merged-tags --sync-dist-version --create-release github --yes --dist-tag latest --registry https://registry.npmjs.org | |
- name: publish @next when on develop | |
if: github.ref == 'refs/heads/develop' | |
run: lerna publish --conventional-prerelease --force-publish --canary --sync-dist-version --no-git-tag-version --include-merged-tags --preid next --pre-dist-tag next --yes --registry https://registry.npmjs.org | |
- name: publish @next when on fix branch | |
if: startsWith(github.ref, 'refs/heads/fix') | |
run: lerna publish --conventional-prerelease --force-publish --canary --sync-dist-version --no-git-tag-version --include-merged-tags --preid fix --pre-dist-tag fix --yes --registry https://registry.npmjs.org | |
- name: publish @unstable when on unstable branch | |
if: startsWith(github.ref, 'refs/heads/feat') | |
run: lerna publish --conventional-prerelease --force-publish --canary --sync-dist-version --no-git-tag-version --include-merged-tags --preid $PRE_ID --pre-dist-tag unstable --yes --throttle-size 75 --registry https://registry.npmjs.org | |