Files
yoga/.github/actions/setup-website/action.yml
Nick Gerleman 018ebe3d37 format
2022-10-14 07:40:52 -07:00

15 lines
292 B
YAML

name: Setup Website envirionment
runs:
using: "composite"
steps:
- name: Install NodeJS 12
uses: actions/setup-node@v1
with:
node-version: 12.x
- name: yarn install
shell: bash
run: yarn install --frozen-lockfile
working-directory: website