Skip to content

big update: plugins, new README, more tests #16

big update: plugins, new README, more tests

big update: plugins, new README, more tests #16

Workflow file for this run

name: Build
on: [push, pull_request]
jobs:
check:
name: Build
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Setup Node
uses: actions/setup-node@v3
with:
node-version: 18.x
- name: Setup pnpm
uses: pnpm/action-setup@v2
with:
version: 8
- name: Install dependencies
run: pnpm install
- name: Check type
run: pnpm checktype
- name: Run tests
run: pnpm test
- name: Run build
run: pnpm build
- name: Run example build
run: pnpm --filter=example-app build
- name: Upload coverage reports to Codecov
uses: codecov/[email protected]
with:
token: ${{ secrets.CODECOV_TOKEN }}
slug: suhaotian/xior