Skip to content

build(deps-dev): bump braces from 3.0.2 to 3.0.3 in the npm_and_yarn group across 1 directory #995

build(deps-dev): bump braces from 3.0.2 to 3.0.3 in the npm_and_yarn group across 1 directory

build(deps-dev): bump braces from 3.0.2 to 3.0.3 in the npm_and_yarn group across 1 directory #995

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' ]
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