Skip to content

chore(deps-dev): bump concurrently from 8.2.2 to 9.0.1 #513

chore(deps-dev): bump concurrently from 8.2.2 to 9.0.1

chore(deps-dev): bump concurrently from 8.2.2 to 9.0.1 #513

Workflow file for this run

name: JavaScript CI
on:
pull_request:
branches: [ master ]
paths: [ 'client/**','server/**', 'src/**','*.ts','*.json','.github/workflows/ci-js.yml' ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.x]
target: [client, server]
steps:
- uses: actions/checkout@v4
- name: install node ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- run: npm ci
working-directory: ${{ matrix.target }}
- run: npm run build --if-present
env:
CI: false
working-directory: ${{ matrix.target }}
- run: npm test
working-directory: ${{ matrix.target }}