2023-01-17 15:05:59 +01:00
|
|
|
name: Unit Tests
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches: [ main ]
|
|
|
|
pull_request:
|
|
|
|
branches: [ main ]
|
|
|
|
jobs:
|
|
|
|
test:
|
|
|
|
timeout-minutes: 60
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v3
|
|
|
|
- uses: actions/setup-node@v3
|
|
|
|
with:
|
|
|
|
node-version: 16
|
|
|
|
- name: Install dependencies
|
|
|
|
run: npm i --legacy-peer-deps
|
2023-02-20 06:51:47 +01:00
|
|
|
- name: Test Package bruno-query
|
|
|
|
run: npm run test --workspace=packages/bruno-query
|
|
|
|
- name: Build Package bruno-query
|
|
|
|
run: npm run build --workspace=packages/bruno-query
|
2023-01-17 15:05:59 +01:00
|
|
|
- name: Test Package bruno-lang
|
|
|
|
run: npm run test --workspace=packages/bruno-lang
|
2023-01-22 19:09:59 +01:00
|
|
|
- name: Test Package bruno-schema
|
|
|
|
run: npm run test --workspace=packages/bruno-schema
|
2023-02-01 01:38:50 +01:00
|
|
|
- name: Test Package bruno-app
|
|
|
|
run: npm run test --workspace=packages/bruno-app
|
2023-02-13 08:41:56 +01:00
|
|
|
- name: Test Package bruno-js
|
|
|
|
run: npm run test --workspace=packages/bruno-js
|