Skip to content

Chore/NS-20-configure-playwright #6

Chore/NS-20-configure-playwright

Chore/NS-20-configure-playwright #6

Workflow file for this run

name: Code check
on:
pull_request:
branches:
- main
jobs:
lint:
name: Eslint, Typescript, prettier and test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Install dependencies
run: npm install
- name: ESLint
run: npm run lint
- name: Type check
run: npm run typecheck
- name: Prettier
run: npm run format:check
- name: Unit tests
run: npm run test
- name: Install Playwright Browsers
run: npx playwright install --with-deps
- name: e2e tests
run: npm run e2e