Remove tests step to build pipelines

This commit is contained in:
Michal Checinski 2022-07-28 09:37:01 +02:00
parent 2011131bb2
commit 497bd86620
3 changed files with 23 additions and 4 deletions

View File

@ -138,10 +138,11 @@ jobs:
run: npm ci
working-directory: ./
- name: Build & Test
run: |
npm run dist
npm run test
- name: Build
run: npm run dist
- name: Test
run: npm run test
- name: Gulp
run: gulp ci
@ -296,6 +297,9 @@ jobs:
run: npm run dist:safari
working-directory: apps/browser
- name: Run tests
run: npm run test
- name: Zip Safari build artifact
run: |
cd apps/browser/dist

View File

@ -196,6 +196,9 @@ jobs:
rustup target add x86_64-unknown-linux-musl
npm run build:cross-platform
- name: Run tests
run: npm run test
- name: Build application
run: npm run dist:lin
@ -317,6 +320,9 @@ jobs:
path: apps/desktop/desktop_native/*.node
key: rust-${{ runner.os }}-${{ hashFiles('apps/desktop/desktop_native/**/*') }}
- name: Run tests
run: npm run test
- name: Build Native Module
if: steps.cache.outputs.cache-hit != 'true'
working-directory: apps/desktop/desktop_native
@ -582,6 +588,9 @@ jobs:
run: npm ci
working-directory: ./
- name: Run tests
run: npm run test
- name: Cache Native Module
uses: actions/cache@48af2dc4a9e8278b89d7fa154b955c30c6aaab09 # v3.0.2
id: cache

View File

@ -94,6 +94,9 @@ jobs:
- name: Install dependencies
run: npm ci
- name: Run tests
run: npm run test
- name: Build OSS selfhost
working-directory: apps/web
run: |
@ -139,6 +142,9 @@ jobs:
- name: Install dependencies
run: npm ci
- name: Run tests
run: npm run test
- name: Build Cloud
working-directory: apps/web
run: |