[OGUI-1583] Reset status of this.item if there is an error saving aft… #2111
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: InfoLogger | |
on: | |
pull_request: | |
paths: | |
- 'InfoLogger/**/*' | |
- '.github/workflows/infologger.yml' | |
push: | |
branches: | |
- 'main' | |
- 'dev' | |
jobs: | |
test: | |
name: Tests on ubuntu-latest | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup node | |
uses: actions/setup-node@v4 | |
with: | |
node-version: '20.x' | |
- run: (cd InfoLogger; npm ci ) | |
- run: (cd InfoLogger; npm test ) | |
coverage: | |
name: Tests & coverage on ubuntu-latest | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: '20.x' | |
- run: (cd InfoLogger; npm ci ) | |
- run: (cd InfoLogger; npm run coverage ) | |
- run: (cd InfoLogger; ./node_modules/.bin/nyc report --reporter=text-lcov > coverage.lcov) | |
- name: Send codecov report for InfoLogger | |
uses: codecov/codecov-action@v4 | |
with: | |
token: ${{ secrets.CODECOV_TOKEN }} | |
flags: infologger | |
fail_ci_if_error: true |