WIP
This commit is contained in:
19
.github/actions/setup-website/action.yml
vendored
Normal file
19
.github/actions/setup-website/action.yml
vendored
Normal file
@@ -0,0 +1,19 @@
|
||||
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
|
Reference in New Issue
Block a user