actual/.github/actions/setup/action.yml

20 lines
442 B
YAML
Raw Normal View History

name: Setup
runs:
using: composite
steps:
- name: Install node
uses: actions/setup-node@v1
with:
node-version: 16.15.0
- name: Cache
uses: actions/cache@v2
id: cache
with:
path: '**/node_modules'
2022-06-29 16:28:47 +00:00
key: yarn-v1-${{ runner.os }}-${{ hashFiles('**/yarn.lock') }}
- name: Install
run: yarn --immutable
shell: bash
if: steps.cache.outputs.cache-hit != 'true'