2024-06-16 11:17:34 +00:00
|
|
|
name: CI
|
|
|
|
|
|
|
|
on:
|
|
|
|
pull_request:
|
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- main
|
|
|
|
- "releases/*"
|
|
|
|
|
|
|
|
permissions:
|
|
|
|
contents: read
|
|
|
|
|
|
|
|
env:
|
|
|
|
CI: true
|
2024-06-16 12:17:37 +00:00
|
|
|
TZ: Asia/Shanghai
|
2024-06-16 11:17:34 +00:00
|
|
|
|
|
|
|
jobs:
|
|
|
|
test:
|
|
|
|
name: Test
|
|
|
|
if: github.actor != 'dependabot[bot]' && !contains(github.event.head_commit.message, '[skip ci]')
|
|
|
|
runs-on: ${{ matrix.os }}
|
|
|
|
strategy:
|
|
|
|
matrix:
|
2024-06-16 12:17:37 +00:00
|
|
|
node-version: [20]
|
2024-06-16 11:17:34 +00:00
|
|
|
os:
|
|
|
|
- ubuntu-latest
|
2024-08-03 21:42:59 +00:00
|
|
|
- macos-latest
|
|
|
|
- windows-latest
|
2024-06-16 11:17:34 +00:00
|
|
|
timeout-minutes: 20
|
|
|
|
steps:
|
|
|
|
- name: Checkout code
|
|
|
|
uses: actions/checkout@v4
|
|
|
|
with:
|
|
|
|
fetch-depth: 0
|
|
|
|
|
|
|
|
- name: Install pnpm
|
|
|
|
uses: pnpm/action-setup@v4
|
2024-06-16 13:17:39 +00:00
|
|
|
with:
|
|
|
|
run_install: false
|
2024-06-16 11:17:34 +00:00
|
|
|
|
|
|
|
- name: Use Node.js ${{ matrix.node-version }}
|
|
|
|
uses: actions/setup-node@v4
|
|
|
|
with:
|
|
|
|
node-version: ${{ matrix.node-version }}
|
|
|
|
cache: "pnpm"
|
|
|
|
|
2024-06-16 13:17:39 +00:00
|
|
|
- name: Find pnpm store path
|
|
|
|
shell: bash
|
|
|
|
run: |
|
|
|
|
echo "STORE_PATH=$(pnpm store path --silent)" >> $GITHUB_ENV
|
|
|
|
|
|
|
|
- name: Setup pnpm cache
|
|
|
|
uses: actions/cache@v4
|
|
|
|
with:
|
|
|
|
path: ${{ env.STORE_PATH }}
|
|
|
|
key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }}
|
|
|
|
restore-keys: |
|
|
|
|
${{ runner.os }}-pnpm-store-
|
|
|
|
|
2024-06-16 11:17:34 +00:00
|
|
|
- name: Install dependencies
|
2024-06-16 13:17:39 +00:00
|
|
|
run: pnpm install --frozen-lockfile
|
2024-06-16 11:17:34 +00:00
|
|
|
|
|
|
|
# - name: Check Git version
|
|
|
|
# run: git --version
|
|
|
|
|
|
|
|
# - name: Setup mock Git user
|
|
|
|
# run: git config --global user.email "you@example.com" && git config --global user.name "Your Name"
|
|
|
|
|
|
|
|
- name: Vitest tests
|
2024-07-28 06:29:05 +00:00
|
|
|
run: pnpm run test:unit
|
2024-06-16 11:17:34 +00:00
|
|
|
|
|
|
|
# - name: Upload coverage
|
|
|
|
# uses: codecov/codecov-action@v4
|
|
|
|
# with:
|
|
|
|
# token: ${{ secrets.CODECOV_TOKEN }}
|
|
|
|
|
|
|
|
lint:
|
|
|
|
name: Lint
|
|
|
|
if: github.actor != 'dependabot[bot]' && !contains(github.event.head_commit.message, '[skip ci]')
|
|
|
|
runs-on: ${{ matrix.os }}
|
|
|
|
strategy:
|
|
|
|
matrix:
|
2024-06-16 12:17:37 +00:00
|
|
|
node-version: [20]
|
2024-06-16 11:17:34 +00:00
|
|
|
os:
|
|
|
|
- ubuntu-latest
|
2024-06-16 12:17:37 +00:00
|
|
|
# - macos-latest
|
|
|
|
# - windows-latest
|
2024-06-16 11:17:34 +00:00
|
|
|
|
|
|
|
steps:
|
|
|
|
- name: Checkout code
|
|
|
|
uses: actions/checkout@v4
|
|
|
|
with:
|
|
|
|
fetch-depth: 0
|
|
|
|
|
|
|
|
- name: Install pnpm
|
|
|
|
uses: pnpm/action-setup@v4
|
|
|
|
|
|
|
|
- name: Use Node.js ${{ matrix.node-version }}
|
|
|
|
uses: actions/setup-node@v4
|
|
|
|
with:
|
|
|
|
node-version: ${{ matrix.node-version }}
|
|
|
|
cache: "pnpm"
|
|
|
|
|
|
|
|
- name: Install dependencies
|
2024-06-16 15:17:40 +00:00
|
|
|
run: pnpm install --frozen-lockfile
|
2024-06-16 11:17:34 +00:00
|
|
|
|
|
|
|
- name: Lint
|
|
|
|
run: pnpm run lint
|
|
|
|
|
2024-06-16 12:17:37 +00:00
|
|
|
check:
|
|
|
|
name: Check
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
timeout-minutes: 20
|
2024-06-16 13:17:39 +00:00
|
|
|
strategy:
|
|
|
|
matrix:
|
|
|
|
node-version: [20]
|
2024-06-16 12:17:37 +00:00
|
|
|
steps:
|
2024-06-16 13:17:39 +00:00
|
|
|
- name: Checkout code
|
|
|
|
uses: actions/checkout@v4
|
|
|
|
with:
|
|
|
|
fetch-depth: 0
|
|
|
|
|
|
|
|
- name: Install pnpm
|
|
|
|
uses: pnpm/action-setup@v4
|
|
|
|
|
|
|
|
- name: Use Node.js ${{ matrix.node-version }}
|
|
|
|
uses: actions/setup-node@v4
|
|
|
|
with:
|
|
|
|
node-version: ${{ matrix.node-version }}
|
|
|
|
cache: "pnpm"
|
|
|
|
|
|
|
|
- name: Install dependencies
|
2024-06-16 15:17:40 +00:00
|
|
|
run: pnpm install --frozen-lockfile
|
2024-06-16 11:17:34 +00:00
|
|
|
|
2024-06-16 13:17:39 +00:00
|
|
|
- name: Typecheck
|
|
|
|
run: pnpm check:type
|
2024-06-16 12:17:37 +00:00
|
|
|
|
|
|
|
# From https://github.com/rhysd/actionlint/blob/main/docs/usage.md#use-actionlint-on-github-actions
|
|
|
|
- name: Check workflow files
|
|
|
|
run: |
|
|
|
|
bash <(curl https://raw.githubusercontent.com/rhysd/actionlint/main/scripts/download-actionlint.bash)
|
|
|
|
./actionlint -color -shellcheck=""
|
2024-06-16 11:17:34 +00:00
|
|
|
|
|
|
|
ci-ok:
|
|
|
|
name: CI OK
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
if: github.actor != 'dependabot[bot]' && !contains(github.event.head_commit.message, '[skip ci]') && always()
|
2024-06-16 12:17:37 +00:00
|
|
|
needs: [test, check, lint]
|
2024-06-16 11:17:34 +00:00
|
|
|
env:
|
|
|
|
FAILURE: ${{ contains(join(needs.*.result, ','), 'failure') }}
|
|
|
|
steps:
|
|
|
|
- name: Check for failure
|
|
|
|
run: |
|
|
|
|
echo $FAILURE
|
|
|
|
if [ "$FAILURE" = "false" ]; then
|
|
|
|
exit 0
|
|
|
|
else
|
|
|
|
exit 1
|
|
|
|
fi
|