Skip to content

refactor(auth): rename PAT credential to pat and env to QODER_PAT #14

refactor(auth): rename PAT credential to pat and env to QODER_PAT

refactor(auth): rename PAT credential to pat and env to QODER_PAT #14

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
permissions:
contents: read
jobs:
test:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
node-version: ['20.12', '22.x', '24.x']
steps:
- uses: actions/checkout@v7
- uses: actions/setup-node@v7
with:
node-version: ${{ matrix.node-version }}
cache: npm
- run: npm ci
# typecheck resolves `qca-sdk` through package exports, so dist must exist first.
- run: npm run build
- run: npm run typecheck
- run: npm test
- run: npm pack --dry-run