Session changes #91
Workflow file for this run
This file contains hidden or 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 | |
| on: | |
| pull_request: | |
| types: [synchronize, opened, reopened] | |
| concurrency: | |
| group: build | |
| cancel-in-progress: true | |
| jobs: | |
| build: | |
| name: Build | |
| runs-on: self-hosted-hoprnet-bigger # The testing task requires more memory | |
| strategy: | |
| matrix: | |
| node-version: [22, 24] | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | |
| - name: Building | |
| run: nix develop .#node${{ matrix.node-version }} --command bash -c "yarn install --frozen-lockfile && yarn build" | |
| - name: Linting | |
| run: nix develop .#node${{ matrix.node-version }} --command yarn lint:ci | |
| - name: Formatting | |
| run: nix develop .#node${{ matrix.node-version }} --command yarn format:ci | |
| - name: Testing | |
| run: nix develop .#node${{ matrix.node-version }} --command yarn test | |
| publish: | |
| name: Publish | |
| runs-on: self-hosted-hoprnet-big | |
| needs: build | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v4 | |
| - name: Setup Node.js | |
| uses: hoprnet/hopr-workflows/actions/setup-node-js@master | |
| with: | |
| node-version: 22.x | |
| - name: Setup GCP | |
| id: gcp | |
| uses: hoprnet/hopr-workflows/actions/setup-gcp@master | |
| with: | |
| google-credentials: ${{ secrets.GOOGLE_HOPRASSOCIATION_CREDENTIALS_REGISTRY }} | |
| login-artifact-registry: 'true' | |
| - name: Publish next version | |
| run: | | |
| BUILD_DATE=$(date +%Y%m%d%H%M%S) | |
| PR_VERSION=$(jq -r '.version' package.json)-pr.${{ github.event.pull_request.number }} | |
| jq --arg version "${PR_VERSION}-${BUILD_DATE}" '.version = $version' package.json > temp.json | |
| mv temp.json package.json | |
| yarn build | |
| npm run login | |
| yarn publish --registry=https://europe-west3-npm.pkg.dev/hoprassociation/npm/ --no-git-tag-version --tag next | |
| env: | |
| NODE_AUTH_TOKEN: ${{ steps.gcp.outputs.access_token }} |