2023-02-05 18:11:34 +08:00
|
|
|
name: CI
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- main
|
|
|
|
|
|
|
|
pull_request:
|
|
|
|
branches:
|
|
|
|
- main
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
lint:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v3
|
|
|
|
- uses: pnpm/action-setup@v2
|
|
|
|
- uses: actions/setup-node@v3
|
|
|
|
with:
|
|
|
|
node-version: 16.x
|
|
|
|
cache: pnpm
|
|
|
|
|
|
|
|
- name: Install
|
|
|
|
run: pnpm install
|
|
|
|
|
|
|
|
- name: Lint
|
|
|
|
run: pnpm run lint
|
|
|
|
|
|
|
|
typecheck:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v3
|
|
|
|
- uses: pnpm/action-setup@v2
|
|
|
|
- uses: actions/setup-node@v3
|
|
|
|
with:
|
|
|
|
node-version: 16.x
|
|
|
|
cache: pnpm
|
|
|
|
|
|
|
|
- name: Install
|
|
|
|
run: pnpm install
|
|
|
|
|
|
|
|
- name: Typecheck
|
|
|
|
run: pnpm run typecheck
|
2023-06-24 17:06:00 +08:00
|
|
|
|
2023-02-05 18:11:34 +08:00
|
|
|
test:
|
2023-06-24 17:06:00 +08:00
|
|
|
runs-on: ubuntu-latest
|
2023-02-05 18:11:34 +08:00
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v3
|
|
|
|
- uses: pnpm/action-setup@v2
|
2023-06-24 17:06:00 +08:00
|
|
|
- uses: actions/setup-node@v3
|
2023-02-05 18:11:34 +08:00
|
|
|
with:
|
2023-06-24 17:06:00 +08:00
|
|
|
node-version: 16.x
|
2023-02-05 18:11:34 +08:00
|
|
|
cache: pnpm
|
|
|
|
|
2023-06-24 17:06:00 +08:00
|
|
|
- name: Install
|
|
|
|
run: pnpm install
|
|
|
|
|
2023-02-05 18:11:34 +08:00
|
|
|
- run: pnpm run test:unit
|
|
|
|
|
2023-02-10 21:57:02 +08:00
|
|
|
# test-e2e:
|
|
|
|
# runs-on: ubuntu-latest
|
|
|
|
# steps:
|
|
|
|
# - uses: actions/checkout@v3
|
|
|
|
# - uses: actions/cache@v3
|
|
|
|
# with:
|
|
|
|
# path: |
|
|
|
|
# ~/.cache
|
|
|
|
# key: cypress-cache-${{ runner.os }}-${{ hashFiles('pnpm-lock.yaml') }}
|
|
|
|
|
|
|
|
# - uses: pnpm/action-setup@v2
|
|
|
|
|
|
|
|
# - name: Use Node.js ${{ matrix.node-version }}
|
|
|
|
# uses: actions/setup-node@v3
|
|
|
|
# with:
|
|
|
|
# node-version: ${{ matrix.node-version }}
|
|
|
|
# registry-url: https://registry.npmjs.org/
|
|
|
|
# cache: pnpm
|
|
|
|
|
|
|
|
# - run: pnpm install
|
|
|
|
|
|
|
|
# - name: Cypress PNPM Patch
|
|
|
|
# run: cp pnpm-lock.yaml package-lock.json
|
|
|
|
|
|
|
|
# - name: Cypress
|
|
|
|
# uses: cypress-io/github-action@v4
|
|
|
|
# with:
|
|
|
|
# install-command: echo
|
|
|
|
# build: pnpm run build
|
|
|
|
# start: npx vite --port 3333
|