Skip to content

prepare for publishing on npm #18

prepare for publishing on npm

prepare for publishing on npm #18

name: Live Tests
on:
pull_request:
branches: [ "main" ]
workflow_dispatch:
jobs:
run-live-tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Use Node.js 22
uses: actions/setup-node@v4
with:
node-version: 22
cache: 'npm'
cache-dependency-path: '**/package-lock.json'
- name: Install Aptos CLI
uses: ./.github/actions/setup-aptos-cli
- name: Build Forklift
working-directory: packages/forklift
run: |
npm ci
npm run build
- name: Run Live Tests
working-directory: packages/live-tests
run: |
npm ci
npm test