2022-08-25 10:06:31 +02:00
|
|
|
---
|
|
|
|
name: Run tests
|
|
|
|
|
|
|
|
on:
|
|
|
|
workflow_dispatch:
|
2023-12-27 21:27:17 +01:00
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- "main"
|
|
|
|
- "rc"
|
|
|
|
- "hotfix-rc-*"
|
2022-08-25 10:06:31 +02:00
|
|
|
pull_request:
|
|
|
|
|
|
|
|
defaults:
|
|
|
|
run:
|
|
|
|
shell: bash
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
test:
|
|
|
|
name: Run tests
|
2023-07-11 00:55:59 +02:00
|
|
|
runs-on: ubuntu-22.04
|
2022-08-25 10:06:31 +02:00
|
|
|
steps:
|
|
|
|
- name: Checkout repo
|
2023-06-29 16:46:56 +02:00
|
|
|
uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 # v3.5.3
|
2022-08-25 10:06:31 +02:00
|
|
|
|
2023-10-04 18:23:40 +02:00
|
|
|
- name: Get Node Version
|
|
|
|
id: retrieve-node-version
|
|
|
|
run: |
|
|
|
|
NODE_NVMRC=$(cat .nvmrc)
|
|
|
|
NODE_VERSION=${NODE_NVMRC/v/''}
|
|
|
|
echo "node_version=$NODE_VERSION" >> $GITHUB_OUTPUT
|
|
|
|
|
2022-08-25 10:06:31 +02:00
|
|
|
- name: Set up Node
|
2023-05-09 18:38:11 +02:00
|
|
|
uses: actions/setup-node@64ed1c7eab4cce3362f8c340dee64e5eaeef8f7c # v3.6.0
|
2022-08-25 10:06:31 +02:00
|
|
|
with:
|
|
|
|
cache: 'npm'
|
|
|
|
cache-dependency-path: '**/package-lock.json'
|
2023-10-04 18:23:40 +02:00
|
|
|
node-version: ${{ steps.retrieve-node-version.outputs.node_version }}
|
2022-08-25 10:06:31 +02:00
|
|
|
|
|
|
|
- name: Print environment
|
|
|
|
run: |
|
|
|
|
node --version
|
|
|
|
npm --version
|
|
|
|
|
|
|
|
- name: Install Node dependencies
|
|
|
|
run: npm ci
|
|
|
|
|
2022-09-08 00:05:30 +02:00
|
|
|
# We use isolatedModules: true which disables typechecking in tests
|
|
|
|
# Tests in apps/ are typechecked when their app is built, so we just do it here for libs/
|
|
|
|
# See https://bitwarden.atlassian.net/browse/EC-497
|
|
|
|
- name: Run typechecking
|
2023-12-27 20:44:04 +01:00
|
|
|
run: npm run test:types --coverage
|
2022-09-08 00:05:30 +02:00
|
|
|
|
2022-08-25 10:06:31 +02:00
|
|
|
- name: Run tests
|
2023-12-27 20:44:04 +01:00
|
|
|
run: npm run test --coverage
|
2023-01-11 15:01:02 +01:00
|
|
|
|
|
|
|
- name: Report test results
|
2023-05-05 22:17:19 +02:00
|
|
|
uses: dorny/test-reporter@c9b3d0e2bd2a4e96aaf424dbaa31c46b42318226 # v1.6.0
|
2023-01-11 15:01:02 +01:00
|
|
|
if: always()
|
|
|
|
with:
|
|
|
|
name: Test Results
|
|
|
|
path: "junit.xml"
|
|
|
|
reporter: jest-junit
|
|
|
|
fail-on-error: true
|
2022-10-24 11:46:50 +02:00
|
|
|
|
2023-12-27 20:44:04 +01:00
|
|
|
- name: Upload to codecov.io
|
|
|
|
uses: codecov/codecov-action@eaaf4bedf32dbdc6b720b63067d99c4d77d6047d # v3.1.4
|
|
|
|
env:
|
|
|
|
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
|
|
|
|
|
2022-10-24 11:46:50 +02:00
|
|
|
rust:
|
|
|
|
name: rust - ${{ matrix.os }}
|
|
|
|
runs-on: ${{ matrix.os || 'ubuntu-latest' }}
|
|
|
|
|
|
|
|
strategy:
|
|
|
|
matrix:
|
|
|
|
os:
|
|
|
|
- ubuntu-latest
|
|
|
|
- macos-latest
|
|
|
|
- windows-latest
|
|
|
|
|
|
|
|
steps:
|
2023-07-11 00:55:59 +02:00
|
|
|
- name: Rust version check
|
|
|
|
run: rustup --version
|
|
|
|
|
2022-10-24 11:46:50 +02:00
|
|
|
- name: Install gnome-keyring
|
|
|
|
if: ${{ matrix.os=='ubuntu-latest' }}
|
2022-10-31 14:29:41 +01:00
|
|
|
run: |
|
|
|
|
sudo apt-get update
|
|
|
|
sudo apt-get install -y gnome-keyring dbus-x11
|
2022-10-24 11:46:50 +02:00
|
|
|
|
|
|
|
- name: Checkout repo
|
2023-06-29 16:46:56 +02:00
|
|
|
uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 # v3.5.3
|
2022-10-24 11:46:50 +02:00
|
|
|
|
|
|
|
- name: Build
|
|
|
|
working-directory: ./apps/desktop/desktop_native
|
|
|
|
run: cargo build
|
|
|
|
|
|
|
|
- name: Test Ubuntu
|
|
|
|
if: ${{ matrix.os=='ubuntu-latest' }}
|
|
|
|
working-directory: ./apps/desktop/desktop_native
|
|
|
|
run: |
|
|
|
|
eval "$(dbus-launch --sh-syntax)"
|
|
|
|
mkdir -p ~/.cache
|
|
|
|
mkdir -p ~/.local/share/keyrings
|
|
|
|
eval "$(printf '\n' | gnome-keyring-daemon --unlock)"
|
|
|
|
eval "$(printf '\n' | /usr/bin/gnome-keyring-daemon --start)"
|
|
|
|
cargo test -- --test-threads=1
|
|
|
|
|
|
|
|
- name: Test Windows / macOS
|
|
|
|
if: ${{ matrix.os!='ubuntu-latest' }}
|
|
|
|
working-directory: ./apps/desktop/desktop_native
|
2023-01-11 15:01:02 +01:00
|
|
|
run: cargo test -- --test-threads=1
|