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

Add deprecation notice #777

Add deprecation notice

Add deprecation notice #777

Workflow file for this run

name: client
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
defaults:
run:
shell: bash
working-directory: client
strategy:
matrix:
node-version: [14.x]
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- run: npm ci
- run: npm run build --if-present
- run: npm test