Skip to content

add sync shell command support, remove non-async for safety. #31

add sync shell command support, remove non-async for safety.

add sync shell command support, remove non-async for safety. #31

Workflow file for this run

name: CI
on:
push:
branches:
- "*"
pull_request:
branches:
- main
permissions:
contents: read
jobs:
ci:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: pnpm/action-setup@v2
with:
version: 10.2.1
- uses: actions/setup-node@v3
with:
node-version: 18
- name: Install dependencies
run: pnpm install --frozen-lockfile
- name: Build
run: pnpm build:ci
- name: Test
run: pnpm test