Skip to content
This repository has been archived by the owner on May 31, 2024. It is now read-only.

chore(deps): bump the npm_and_yarn group group in /client with 1 update #98

chore(deps): bump the npm_and_yarn group group in /client with 1 update

chore(deps): bump the npm_and_yarn group group in /client with 1 update #98

Workflow file for this run

name: JavaScript CI
on:
pull_request:
branches: [ "main" ]
paths: [ 'client/**','server/**', 'src/**','*.ts','*.json','.github/workflows/ci-js.yml' ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [16.x, 17.x]
target: [client, server]
steps:
- uses: actions/checkout@v2
- name: install node ${{ matrix.node-version }}
uses: actions/setup-node@v2
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 }}