Skip to content

refactor: modernize project tooling and simplify architecture #1

refactor: modernize project tooling and simplify architecture

refactor: modernize project tooling and simplify architecture #1

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
branches:
- main
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
ci:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: 20
- name: Enable Corepack
run: corepack enable
- name: Install dependencies
run: yarn install --frozen-lockfile
- name: Lint
run: yarn lint --max-warnings 0
- name: Build
run: yarn prepare