Workspace can't see other jobs but first

Hello, i am newbie in CircleCI and tried to setup it besides GitHub CI. So, i have this config:

version: 2.1

wokflows:
  version: 2

  build:
    jobs:
      - build
      - style
      - test

jobs:
  build:
    executor: node/default
    steps:
      - checkout
      - node/install-yarn
      - run: yarn install
      - run: yarn build:lexer
      - run: yarn build:core

  style:
    executor: node/default
    steps:
      - checkout
      - run: npm install
      - run: npm run eslint

  test:
    executor: node/default
    steps:
      - checkout
      - run: npm install
      - run: npm run test

orbs:
  node: circleci/node@4.0.0

But after i looked at dashbord i saw that only first job - build executes. How do i fix this mistake?

workflows is misspelled in your config wokflows -> workflows