Skip to content

feat: rename to aspera SDK #86

feat: rename to aspera SDK

feat: rename to aspera SDK #86

Workflow file for this run

name: CI
on:
pull_request:
workflow_dispatch:
jobs:
CI:
runs-on: ubuntu-latest
strategy:
matrix:
node: [18, 20, 22]
steps:
- uses: actions/checkout@v2
- name: Setup Node.js ${{ matrix.node }}
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node }}
- name: Install
run: |
npm ci
- name: Build Package
run: |
npm run build
npm run build:module
- name: Run Linter
run: |
npm run lint
- name: Run Unit Tests
run: |
npm run test