Skip to content

Merge branch 'main' into feature/III-6344 #4978

Merge branch 'main' into feature/III-6344

Merge branch 'main' into feature/III-6344 #4978

Workflow file for this run

name: CI
on: push
jobs:
format:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 16
- name: Install dependencies
run: yarn install --frozen-lockfile
- name: Run Prettier
run: yarn format:check
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 16
- name: Install dependencies
run: yarn install --frozen-lockfile
- name: Run ESLint
run: yarn lint:check
types:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 16
- name: Install dependencies
run: |
yarn install --frozen-lockfile
yarn add @playwright/test@latest --ignore-engines
npx playwright install
- name: Run Typescript
run: yarn types:check
test-unit:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 16
- name: Install dependencies
run: yarn install --frozen-lockfile
- name: Run Jest
run: yarn test:unit