mirror of
https://github.com/zhigang1992/connect.git
synced 2026-04-28 09:25:40 +08:00
18 lines
392 B
YAML
18 lines
392 B
YAML
name: 'Code Checks'
|
|
description: 'Run tests, linting, and other common jobs'
|
|
runs:
|
|
using: 'composite'
|
|
steps:
|
|
- name: Install yarn dependencies
|
|
run: yarn --frozen-lockfile
|
|
shell: bash
|
|
- name: Lint
|
|
run: yarn lint
|
|
shell: bash
|
|
- name: Generate types
|
|
run: yarn types
|
|
shell: bash
|
|
- name: Typecheck
|
|
run: yarn typecheck
|
|
shell: bash
|