Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
32 changes: 32 additions & 0 deletions .github/workflows/cli-tests.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
name: CLI Integration Tests

on:
push:
branches: [master]
paths:
- 'v2/cli/**'
pull_request:
paths:
- 'v2/cli/**'

jobs:
test:
name: Run CLI integration tests
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4

- uses: actions/setup-node@v4
with:
node-version: 20
cache: npm
cache-dependency-path: v2/cli/package-lock.json

- name: Install dependencies
run: npm ci
working-directory: v2/cli

- name: Run tests
run: npm test
working-directory: v2/cli
Loading