👷 reuse workflow setup step

This commit is contained in:
yanyongyu
2022-01-13 16:41:01 +08:00
parent a8a1b4d65d
commit b52ccc3690
6 changed files with 55 additions and 102 deletions

21
.github/actions/setup-node/action.yml vendored Normal file
View File

@ -0,0 +1,21 @@
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') }}
- run: yarn install
shell: bash

20
.github/actions/setup-python/action.yml vendored Normal file
View File

@ -0,0 +1,20 @@
name: Setup Python
description: Setup Python
runs:
using: "composite"
steps:
- uses: actions/setup-python@v2
with:
python-version: "3.9"
architecture: "x64"
- uses: Gr1N/setup-poetry@v7
- uses: actions/cache@v2
with:
path: ~/.cache/pypoetry/virtualenvs
key: ${{ runner.os }}-poetry-${{ hashFiles('**/poetry.lock') }}
- run: poetry install -E all
shell: bash