Skip to content

feat(scan): print warnings on scan run #969

feat(scan): print warnings on scan run

feat(scan): print warnings on scan run #969

Workflow file for this run

name: CI / Automated testing
on:
pull_request:
branches:
- '**'
concurrency:
group: '${{ github.workflow }}-${{ github.ref }}'
cancel-in-progress: true
jobs:
install-deps:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Install deps
uses: ./.github/workflows/composite/npm
test:
runs-on: ubuntu-latest
needs: install-deps
strategy:
fail-fast: false
matrix:
target: [ 'lint', 'format', 'test:unit', 'build' ]
steps:
- name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Install deps
uses: ./.github/workflows/composite/npm
- name: Execute ${{ matrix.target }} npm script
run: npm run ${{ matrix.target }} -- $JEST_ARGUMENTS