Ability to select channels from several logs and show them all in one view #2152 #16
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: Desktop Package and Test | |
on: | |
pull_request: | |
branches: | |
- main | |
paths: | |
- 'Src/WitsmlExplorer.Api/**' | |
- 'Src/WitsmlExplorer.Frontend/**' | |
- 'Src/WitsmlExplorer.Desktop/**' | |
permissions: {} | |
jobs: | |
desktop: | |
name: Package and Test | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 | |
- uses: actions/setup-node@60edb5dd545a775178f52524783378180af0d1f8 # v4.0.2 | |
with: | |
node-version: '20' | |
- name: Install dependencies | |
run: yarn | |
working-directory: ./Src/WitsmlExplorer.Desktop | |
- name: Package | |
run: yarn electron:pack | |
working-directory: ./Src/WitsmlExplorer.Desktop | |
- name: Test | |
run: xvfb-run --auto-servernum --server-args="-screen 0 1280x960x24" -- yarn test:pack | |
working-directory: ./Src/WitsmlExplorer.Desktop |