Skip to content

FIX-182 add serviceCompany and runNumber as editable attributes in log #742

FIX-182 add serviceCompany and runNumber as editable attributes in log

FIX-182 add serviceCompany and runNumber as editable attributes in log #742

Workflow file for this run

name: Frontend Build and Test
on:
pull_request:
branches:
- main
paths:
- 'Src/WitsmlExplorer.Frontend/**'
permissions: {}
jobs:
frontend:
name: Build and Test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 # v3.5.3
- uses: actions/setup-node@5e21ff4d9bc1a8cf6de233a3057d20ec6b3fb69d # v3.8.1
with:
node-version: '16'
- name: Install dependencies
run: yarn
working-directory: ./Src/WitsmlExplorer.Frontend
- name: Linting
run: yarn lint
working-directory: ./Src/WitsmlExplorer.Frontend
- name: Prettier
run: npx prettier --check .
- name: Build
run: yarn build
working-directory: ./Src/WitsmlExplorer.Frontend
- name: Test
run: yarn test
working-directory: ./Src/WitsmlExplorer.Frontend