mirror of
https://github.com/alexgo-io/alex-sdk.git
synced 2026-01-12 14:25:02 +08:00
23 lines
462 B
YAML
23 lines
462 B
YAML
name: CI
|
|
on: [push]
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
timeout-minutes: 20
|
|
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- name: Setup pnpm
|
|
run: corepack enable
|
|
- uses: actions/setup-node@v2
|
|
with:
|
|
node-version: "18"
|
|
cache: "pnpm"
|
|
- name: Install Deps
|
|
run: pnpm install --frozen-lockfile --verify-store-integrity
|
|
- name: Test
|
|
run: pnpm run ci
|
|
env:
|
|
CI: true
|