Skip to content

HPC-8232, HPC-7811, HPC-8130 - setup testing environment with jest and docker #298

HPC-8232, HPC-7811, HPC-8130 - setup testing environment with jest and docker

HPC-8232, HPC-7811, HPC-8130 - setup testing environment with jest and docker #298

Workflow file for this run

name: CI Checks
on:
pull_request:
types: [opened, synchronize, reopened]
jobs:
workflow:
name: Code Checks
runs-on: ubuntu-latest
timeout-minutes: 25
steps:
- name: Checkout repository
uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: '18'
- name: Install packages
run: yarn install --frozen-lockfile
- name: TypeScript compiler checks
run: npm run check-types
- name: Linting checks
run: npm run lint