problem: uses a deprecated version of actions/upload-artifact: v2
#933
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Unit Tests | |
on: | |
push: | |
branches: | |
- master | |
- ci/* | |
- release/* | |
pull_request: | |
branches: | |
- master | |
jobs: | |
test: | |
name: On ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: ['windows-latest', 'macos-latest', 'ubuntu-latest'] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- name: Checkout the code | |
uses: actions/checkout@v3 | |
# Needed for Electron tests | |
- name: Setup Display (Linux) | |
run: Xvfb :99 -screen 0 1024x768x24 > /dev/null 2>&1 & | |
if: runner.os == 'Linux' | |
- name: Update apt index (Linux) | |
run: sudo apt update | |
if: runner.os == 'Linux' | |
- name: Install system libs (Linux) | |
run: sudo apt install libcurl4 libudev-dev libusb-1.0-0-dev xvfb | |
if: runner.os == 'Linux' | |
- name: Install Node.js | |
uses: actions/setup-node@v3 | |
with: | |
node-version: '18.x' | |
- name: Enable Corepack | |
run: corepack enable | |
- name: Install Rust | |
uses: actions-rs/toolchain@v1 | |
with: | |
profile: minimal | |
toolchain: stable | |
override: true | |
- name: Install dependencies | |
run: yarn install | |
- name: Build native | |
run: yarn build:native | |
- name: Build | |
run: yarn build | |
- name: Test | |
run: yarn test:coverage | |
env: | |
DISPLAY: ':99.0' | |
- name: Upload coverage | |
uses: codecov/codecov-action@v3 | |
with: | |
files: 'packages/**/coverage/clover.xml' | |
if: runner.os == 'Linux' |