|
|
@ -5,49 +5,52 @@ name: Node.js CI
|
|
|
|
|
|
|
|
|
|
|
|
on:
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
push:
|
|
|
|
branches: [ main ]
|
|
|
|
branches: [main]
|
|
|
|
pull_request:
|
|
|
|
pull_request:
|
|
|
|
branches: [ main ]
|
|
|
|
branches: [main]
|
|
|
|
jobs:
|
|
|
|
jobs:
|
|
|
|
check:
|
|
|
|
check:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
|
|
|
|
|
|
|
|
steps:
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v2
|
|
|
|
- name: Checkout
|
|
|
|
|
|
|
|
uses: actions/checkout@v4
|
|
|
|
|
|
|
|
|
|
|
|
- name: Install pnpm
|
|
|
|
- uses: pnpm/action-setup@v3
|
|
|
|
uses: pnpm/action-setup@v2.0.1
|
|
|
|
|
|
|
|
with:
|
|
|
|
with:
|
|
|
|
version: 6.15.1
|
|
|
|
version: 8
|
|
|
|
|
|
|
|
|
|
|
|
- name: Use Node.js 16.x
|
|
|
|
- uses: actions/setup-node@v4
|
|
|
|
uses: actions/setup-node@v2
|
|
|
|
|
|
|
|
with:
|
|
|
|
with:
|
|
|
|
node-version: 16.x
|
|
|
|
node-version: "20"
|
|
|
|
cache: 'pnpm'
|
|
|
|
cache: "pnpm"
|
|
|
|
|
|
|
|
|
|
|
|
- run: pnpm install
|
|
|
|
- name: Install dependencies
|
|
|
|
- run: pnpm lint
|
|
|
|
run: pnpm install
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
- name: Lint
|
|
|
|
|
|
|
|
run: pnpm lint
|
|
|
|
|
|
|
|
|
|
|
|
build:
|
|
|
|
build:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
needs: check
|
|
|
|
needs: check
|
|
|
|
if: github.event_name == 'push'
|
|
|
|
if: github.event_name == 'push'
|
|
|
|
steps:
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v2
|
|
|
|
- name: Checkout
|
|
|
|
|
|
|
|
uses: actions/checkout@v4
|
|
|
|
|
|
|
|
|
|
|
|
- name: Install pnpm
|
|
|
|
- uses: pnpm/action-setup@v3
|
|
|
|
uses: pnpm/action-setup@v2.0.1
|
|
|
|
|
|
|
|
with:
|
|
|
|
with:
|
|
|
|
version: 6.15.1
|
|
|
|
version: 8
|
|
|
|
|
|
|
|
|
|
|
|
- name: Use Node.js 16.x
|
|
|
|
- uses: actions/setup-node@v4
|
|
|
|
uses: actions/setup-node@v2
|
|
|
|
|
|
|
|
with:
|
|
|
|
with:
|
|
|
|
node-version: 16.x
|
|
|
|
node-version: "20"
|
|
|
|
cache: 'pnpm'
|
|
|
|
cache: "pnpm"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
- name: Install dependencies
|
|
|
|
|
|
|
|
run: pnpm install
|
|
|
|
|
|
|
|
|
|
|
|
- run: pnpm install
|
|
|
|
|
|
|
|
- run: pnpm build
|
|
|
|
- run: pnpm build
|
|
|
|
- run: cd build && zip -r -m build.zip .
|
|
|
|
- run: cd build && zip -r -m build.zip .
|
|
|
|
|
|
|
|
|
|
|
|