2024-01-29 09:18:51 +01:00
|
|
|
name: Tests
|
2023-01-17 15:05:59 +01:00
|
|
|
on:
|
|
|
|
push:
|
2023-09-29 03:39:33 +02:00
|
|
|
branches: [main]
|
2023-01-17 15:05:59 +01:00
|
|
|
pull_request:
|
2023-09-29 03:39:33 +02:00
|
|
|
branches: [main]
|
2023-01-17 15:05:59 +01:00
|
|
|
jobs:
|
2024-01-29 09:15:25 +01:00
|
|
|
unit-test:
|
2024-01-29 11:33:18 +01:00
|
|
|
name: Unit Tests
|
2023-01-17 15:05:59 +01:00
|
|
|
timeout-minutes: 60
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
2023-10-11 12:57:12 +02:00
|
|
|
- uses: actions/checkout@v4
|
2023-09-29 03:39:33 +02:00
|
|
|
- uses: actions/setup-node@v3
|
|
|
|
with:
|
2023-10-11 12:57:12 +02:00
|
|
|
node-version-file: '.nvmrc'
|
2023-09-29 03:39:33 +02:00
|
|
|
- name: Install dependencies
|
2023-10-11 12:57:12 +02:00
|
|
|
run: npm ci --legacy-peer-deps
|
2024-01-29 13:12:27 +01:00
|
|
|
|
|
|
|
# build libraries
|
|
|
|
- name: Build libraries
|
|
|
|
run: |
|
|
|
|
npm run build --workspace=packages/bruno-common
|
|
|
|
npm run build --workspace=packages/bruno-query
|
|
|
|
|
|
|
|
# test
|
2023-09-29 03:39:33 +02:00
|
|
|
- name: Test Package bruno-query
|
|
|
|
run: npm run test --workspace=packages/bruno-query
|
|
|
|
- name: Test Package bruno-lang
|
|
|
|
run: npm run test --workspace=packages/bruno-lang
|
|
|
|
- name: Test Package bruno-schema
|
|
|
|
run: npm run test --workspace=packages/bruno-schema
|
|
|
|
- name: Test Package bruno-app
|
|
|
|
run: npm run test --workspace=packages/bruno-app
|
|
|
|
- name: Test Package bruno-js
|
|
|
|
run: npm run test --workspace=packages/bruno-js
|
2024-01-29 09:15:25 +01:00
|
|
|
- name: Test Package bruno-common
|
|
|
|
run: npm run test --workspace=packages/bruno-common
|
2023-09-29 02:58:25 +02:00
|
|
|
- name: Test Package bruno-cli
|
|
|
|
run: npm run test --workspace=packages/bruno-cli
|
2023-09-29 03:39:33 +02:00
|
|
|
- name: Test Package bruno-electron
|
2024-01-29 09:15:25 +01:00
|
|
|
run: npm run test --workspace=packages/bruno-electron
|
|
|
|
|
|
|
|
cli-test:
|
2024-01-29 11:33:18 +01:00
|
|
|
name: CLI Tests
|
2024-01-29 09:15:25 +01:00
|
|
|
runs-on: ubuntu-latest
|
2024-02-08 20:51:06 +01:00
|
|
|
# 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
|
2024-02-08 20:54:19 +01:00
|
|
|
actions: write
|
2024-01-29 09:15:25 +01:00
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v4
|
2024-01-29 09:21:37 +01:00
|
|
|
- uses: actions/setup-node@v3
|
|
|
|
with:
|
|
|
|
node-version-file: '.nvmrc'
|
|
|
|
|
|
|
|
- name: Install dependencies
|
|
|
|
run: npm ci --legacy-peer-deps
|
|
|
|
|
|
|
|
- name: Build Libraries
|
|
|
|
run: |
|
|
|
|
npm run build --workspace=packages/bruno-query
|
|
|
|
npm run build --workspace=packages/bruno-common
|
|
|
|
|
|
|
|
- name: Run tests
|
2024-01-29 09:15:25 +01:00
|
|
|
run: |
|
2024-01-29 09:18:51 +01:00
|
|
|
cd packages/bruno-tests/collection
|
2024-01-30 17:56:47 +01:00
|
|
|
npm install
|
2024-01-29 09:18:51 +01:00
|
|
|
node ../../bruno-cli/bin/bru.js run --env Prod --output junit.xml --format junit
|
2024-01-29 09:15:25 +01:00
|
|
|
|
|
|
|
- name: Publish Test Report
|
|
|
|
uses: dorny/test-reporter@v1
|
|
|
|
if: success() || failure()
|
|
|
|
with:
|
|
|
|
name: Test Report
|
2024-01-29 09:33:31 +01:00
|
|
|
path: packages/bruno-tests/collection/junit.xml
|
2024-01-29 09:15:25 +01:00
|
|
|
reporter: java-junit
|
2023-10-11 12:57:12 +02:00
|
|
|
|
|
|
|
prettier:
|
2024-01-29 11:33:18 +01:00
|
|
|
name: Prettier
|
2023-10-11 12:57:12 +02:00
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v4
|
|
|
|
- uses: actions/setup-node@v3
|
|
|
|
with:
|
|
|
|
node-version-file: '.nvmrc'
|
|
|
|
- name: Install dependencies
|
|
|
|
run: npm ci --legacy-peer-deps
|
|
|
|
- name: Run Prettier
|
|
|
|
run: npm run test:prettier:web
|