chore: create-cli cleanup #1865
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: test | |
on: | |
pull_request: | |
branches: | |
- main | |
jobs: | |
lint: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: "16" | |
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 | |
# Unit test both packages | |
- run: npm run test | |
test-e2e-cli: | |
strategy: | |
matrix: | |
os: [ubuntu-latest, windows-latest] | |
name: test - ${{ matrix.os }} | |
runs-on: ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: "16" | |
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 --workspace packages/cli | |
- run: npm run test:e2e --workspace packages/cli | |
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 }} | |
test-e2e-create-cli: | |
strategy: | |
matrix: | |
os: [ubuntu-latest, windows-latest] | |
name: test create-cli - ${{ matrix.os }} | |
runs-on: ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: "16" | |
cache: "npm" | |
cache-dependency-path: package-lock.json | |
- run: npm config set fund false && npm set audit false | |
- run: npm ci | |
- run: npm run test:e2e --workspace packages/create-cli | |