Files
yoga/.github/actions/setup-website/action.yml
Nick Gerleman 55d614c4c2 WIP
2022-10-14 07:06:36 -07:00

20 lines
389 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
- name: yarn build
shell: bash
run: yarn build
working-directory: website