Skip to content

ci: Updating the build workflow to use Codecov actions instead of codecov npm package. #3516

ci: Updating the build workflow to use Codecov actions instead of codecov npm package.

ci: Updating the build workflow to use Codecov actions instead of codecov npm package. #3516

Workflow file for this run

name: Common JS
on:
push:
branches:
- main
- develop
- release/*
pull_request:
branches:
- main
- develop
- release/*
defaults:
run:
shell: bash
permissions:
contents: read
jobs:
test-integration-node:
name: Integration Tests on Node ${{ matrix.node }}
runs-on: client-sdk-linux-large
strategy:
matrix:
node: [ "16", "18" ]
steps:
- name: Harden Runner
uses: step-security/harden-runner@5c7944e73c4c2a096b17a9cb74d65b6c2bbafbde # v2.9.1
with:
egress-policy: audit
- name: Checkout Code
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
with:
submodules: true
- name: Install Task
uses: arduino/setup-task@b91d5d2c96a56797b48ac1e0e89220bf64044611 # v2.0.0
with:
version: 3.35.1
- name: Install PNPM
uses: pnpm/action-setup@fe02b34f77f8bc703788d5817da081398fad5dd2 # v4.0.0
with:
version: 8.15.4
- name: Setup Node
uses: actions/setup-node@0a44ba7841725637a19e28fa30b79a866c81b0a6 # v4.0.4
with:
node-version: ${{ matrix.node }}
cache: pnpm
- name: Build @hashgraph/sdk
run: task build
- name: Install dependencies
working-directory: common_js_test
run: task install
- name: Test
working-directory: common_js_test
run: task test