emoji-cheat-sheet/.github/actions/setup/action.yml

14 lines
284 B
YAML
Raw Normal View History

2023-07-22 19:19:36 +08:00
name: setup
description: setup
runs:
using: composite
steps:
- uses: pnpm/action-setup@v2
- uses: actions/setup-node@v3
with:
cache: pnpm
node-version: '18'
registry-url: 'https://registry.npmjs.org'
- run: pnpm install
shell: bash