Skip to content

Bump @walletconnect/types from 2.10.6 to 2.11.0 #31

Bump @walletconnect/types from 2.10.6 to 2.11.0

Bump @walletconnect/types from 2.10.6 to 2.11.0 #31

Workflow file for this run

name: Test
on:
workflow_dispatch:
pull_request:
push:
branches: [main]
jobs:
test-node:
name: Unit Tests
runs-on: [self-hosted, Linux, medium, ephemeral]
permissions:
checks: write
pull-requests: write
contents: read
steps:
- name: Setup NodeJS Environment
uses: actions/setup-node@5e21ff4d9bc1a8cf6de233a3057d20ec6b3fb69d
with:
node-version: 18.x
- name: Checkout repository
uses: actions/checkout@v3
- name: Install dependencies
run: npm install
- name: Run tests (Forked PR)
if: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.repo.full_name != github.repository && !cancelled() && !failure() }}
run: npm run test
- name: Test
uses: ArtiomTr/jest-coverage-report-action@v2
if: ${{ ((github.event_name == 'pull_request' && github.event.pull_request.head.repo.full_name == github.repository) || github.event_name == 'push') && !cancelled() && !failure() }}
with:
test-script: npm run test