Skip to content

Fix eslint configuration and adjust rules for same #4

Fix eslint configuration and adjust rules for same

Fix eslint configuration and adjust rules for same #4

Workflow file for this run

name: Client CI
on:
push:
paths:
- 'react/**'
- '.github/workflows/react.yml'
jobs:
Test-and-Build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [ 20.x ]
steps:
- name: Git checkout
uses: actions/checkout@v2
- name: Setup Node ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: Install dependencies
run: |
cd react
yarn install
- name: Run tests
run: |
cd react
yarn test:ci
- name: Build react artifacts
run: |
cd react
yarn build