Skip to content

fix: add token input for reliable auth #8

fix: add token input for reliable auth

fix: add token input for reliable auth #8

Workflow file for this run

name: Test Action
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
lint-and-build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: '22'
cache: 'npm'
- run: npm ci
- run: npm run build
- name: Verify dist output
run: |
test -f dist/main.js || { echo "dist/main.js not found"; exit 1; }
echo "✅ dist/main.js exists"