Skip to content

test: debug

test: debug #17

Workflow file for this run

name: test
on:
push:
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v4
with:
node-version: "18"
cache: "npm"
cache-dependency-path: package-lock.json
- run: npm config set fund false && npm set audit false
- run: npm ci
# Test that the packaging works as well
- run: npm pack --workspaces
- run: npm run lint
test:
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, windows-latest]
node: ["18", "20", "22"]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node}}
cache: "npm"
cache-dependency-path: package-lock.json
- run: npm config set fund false && npm set audit false
- run: npm ci
- run: npm run prepack
- run: node src/test.js
working-directory: packages/cli
- run: npm run test
#- run: npm run test:e2e
# env:
# CHECKLY_ACCOUNT_NAME: ${{ secrets.E2E_CHECKLY_ACCOUNT_NAME }}
# CHECKLY_ACCOUNT_ID: ${{ secrets.E2E_CHECKLY_ACCOUNT_ID }}
# CHECKLY_API_KEY: ${{ secrets.E2E_CHECKLY_API_KEY }}