ci: 添加生成 Frontend 的 Action

This commit is contained in:
hemengyang
2022-05-18 13:08:25 +00:00
committed by GitHub
parent 42029ef2dd
commit 0bd11b48bc
2 changed files with 44 additions and 1 deletions
+18
View File
@@ -0,0 +1,18 @@
name: Setup Node
description: Setup Node
runs:
using: "composite"
steps:
- uses: actions/setup-node@v2
with:
node-version: "16"
- id: yarn-cache-dir-path
run: echo "::set-output name=dir::$(yarn cache dir)"
shell: bash
- uses: actions/cache@v2
with:
path: ${{ steps.yarn-cache-dir-path.outputs.dir }}
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }}