Skip to content

[EPMDEDP-12445]: fix: Fix generating stable image stream tags, add un… #302

[EPMDEDP-12445]: fix: Fix generating stable image stream tags, add un…

[EPMDEDP-12445]: fix: Fix generating stable image stream tags, add un… #302

Workflow file for this run

name: "CI"
on:
push:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [16.x]
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- name: Install dependencies
run: npm ci
- name: Run linter
run: npm run lint
- name: Run build
run: npm run build
- name: Run tests
run: npm run test:coverage
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v3
with:
fail_ci_if_error: true
files: ./analysis/coverage/coverage-final.json
flags: unittests
name: codecov-umbrella
verbose: true