Skip to content

fix(deps): bump @internxt/sdk from 1.19.0 to 1.20.0 #574

fix(deps): bump @internxt/sdk from 1.19.0 to 1.20.0

fix(deps): bump @internxt/sdk from 1.19.0 to 1.20.0 #574

Workflow file for this run

name: CI Tests
on:
push:
workflow_dispatch:
permissions:
contents: read
pull-requests: read
jobs:
tests:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: '24.x'
cache: npm
- name: Add .env
run: cp .env.template .env
- name: Add .npmrc
run: cp .npmrc.template .npmrc
- name: Install dependencies
run: npm ci
- name: Build
run: npm run build
- name: Run tests
run: npm run test:cov