Skip to content

fix: use correct sdk #1083

fix: use correct sdk

fix: use correct sdk #1083

Workflow file for this run

name: Node CI
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node: [16, 18, 20]
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
cache: 'npm'
node-version: ${{ matrix.node }}
- name: npm install, build, and test
run: |
npm ci
npm run build --if-present
npm test
env:
CI: true