20 lines
389 B
YAML
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
|