mirror of
https://github.com/ikatyang/emoji-cheat-sheet.git
synced 2024-11-15 19:38:15 +08:00
14 lines
284 B
YAML
14 lines
284 B
YAML
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
|