mirror of
https://github.com/usebruno/bruno.git
synced 2026-06-26 22:25:40 +00:00
67 lines
1.6 KiB
YAML
67 lines
1.6 KiB
YAML
name: Bru CLI Tests (npm)
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
inputs:
|
|
build:
|
|
description: 'Test Bru CLI (npm)'
|
|
required: true
|
|
default: 'true'
|
|
|
|
# Assign permissions for unit tests to be reported.
|
|
# See https://github.com/dorny/test-reporter/issues/168
|
|
permissions:
|
|
statuses: write
|
|
checks: write
|
|
contents: write
|
|
pull-requests: write
|
|
actions: write
|
|
|
|
jobs:
|
|
test:
|
|
name: CLI Tests
|
|
strategy:
|
|
matrix:
|
|
os: [ubuntu-latest, macos-latest]
|
|
runs-on: ${{ matrix.os }}
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- uses: actions/setup-node@v4
|
|
with:
|
|
node-version-file: '.nvmrc'
|
|
|
|
- name: Install Bru CLI from NPM
|
|
run: npm install -g @usebruno/cli
|
|
|
|
- name: Display Bru CLI Version
|
|
run: bru --version
|
|
|
|
- name: Start Testbench Server
|
|
run: |
|
|
cd packages/bruno-tests
|
|
npm run dev 1>/tmp/tesbench-server-logs.txt 2>&1 &
|
|
|
|
- name: Run tests
|
|
run: |
|
|
cd packages/bruno-tests/collection
|
|
npm install
|
|
bru run \
|
|
--env Prod \
|
|
--cacert ../ssl/localhost.crt \
|
|
--output junit.xml --format junit
|
|
|
|
- uses: actions/upload-artifact@v4
|
|
if: ${{ !cancelled() }}
|
|
with:
|
|
name: tesbench-server-logs
|
|
path: /tmp/tesbench-server-logs.txt
|
|
retention-days: 7
|
|
|
|
- name: Publish Test Report
|
|
uses: dorny/test-reporter@v2
|
|
if: success() || failure()
|
|
with:
|
|
name: Test Report
|
|
path: packages/bruno-tests/collection/junit.xml
|
|
reporter: java-junit
|