Skip to content

Chore/NS-20-configure-playwright #10

Chore/NS-20-configure-playwright

Chore/NS-20-configure-playwright #10

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: Tests
run: npm run test