Skip to content

Fix ci

Fix ci #2

Workflow file for this run

name: Main CI
on: [workflow_dispatch, push]
jobs:
tests_checks_build:
runs-on: ubuntu-latest
name: Tests, checks, build
steps:
- uses: actions/checkout@v3
name: Checkout
- name: Install dependencies
run: yarn
- name: Run linter
run: yarn lint
- name: Run tests
run: yarn test:ci
- name: Run build
run: yarn build