Skip to content

Update dependency react to v18 #672

Update dependency react to v18

Update dependency react to v18 #672

Workflow file for this run

name: CI
on: pull_request
jobs:
auth:
name: Authentication service
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Setup node
uses: actions/setup-node@v2
with:
node-version: '14.x'
- name: Install packages
working-directory: auth
run: npm ci
- name: Formatting, linting, tsc, and tests
working-directory: auth
run: |
npm run prettier:check
npm run lint
npm run tsc:check
npm run test
web-client:
name: Web client service
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Setup node
uses: actions/setup-node@v2
with:
node-version: '14.x'
- name: Install packages
working-directory: web-client
run: npm ci
- name: Formatting, linting, tsc, and tests
working-directory: web-client
run: |
npm run prettier:check
npm run lint
npm run tsc:check
npm run tsc:cypress
npm run test
npm run test:cypress