2023-10-25 14:05:00 +08:00
|
|
|
name: build
|
|
|
|
|
|
|
|
on:
|
|
|
|
push
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
build:
|
|
|
|
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
strategy:
|
|
|
|
matrix:
|
2023-10-25 14:15:11 +08:00
|
|
|
node-version: [10.x,16.x,18.x]
|
2023-10-25 14:05:00 +08:00
|
|
|
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v4
|
|
|
|
- uses: actions/setup-node@v3
|
|
|
|
with:
|
|
|
|
node-version: ${{ matrix.node-version }}
|
|
|
|
cache: 'npm'
|
2023-10-26 14:01:41 +08:00
|
|
|
|
2023-10-25 14:05:00 +08:00
|
|
|
# 安装依赖
|
2023-10-25 14:15:11 +08:00
|
|
|
- name: Node Version
|
|
|
|
run: node -v
|