Skip to content

add debugging to workflow #6

add debugging to workflow

add debugging to workflow #6

Workflow file for this run

---
name: Check
on:
push:
branches:
- "**"
jobs:
typecheck:
name: Typecheck (Node.js v${{ matrix.node }})
runs-on: ubuntu-latest
timeout-minutes: 30
steps:
- name: Checkout
uses: actions/checkout@v1
- name: Setup Node.js
uses: actions/setup-node@v2
with:
node-version: "18.x"
registry-url: "https://npm.pkg.github.com"
- name: Debug
run: |
node --version
echo $NODE_AUTH_TOKEN
env:
NODE_AUTH_TOKEN: ${{ secrets.SEAMAPI_NPM_TOKEN }}
- run: npm install
env:
NODE_AUTH_TOKEN: ${{ secrets.SEAMAPI_NPM_TOKEN }}
# - run: npm run build
- name: Check types
run: npm run typecheck