Skip to content

chore(deps): bump rollup from 2.79.1 to 2.79.2 in /client #7

chore(deps): bump rollup from 2.79.1 to 2.79.2 in /client

chore(deps): bump rollup from 2.79.1 to 2.79.2 in /client #7

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 }}