Skip to content

deploy 3.2.42

deploy 3.2.42 #608

Workflow file for this run

name: Build
on:
push:
branches:
- main
jobs:
build-ubuntu:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
ref: ${{ github.head_ref }}
fetch-depth: 0
- uses: actions/setup-node@v2
with:
node-version: "16"
- name: install
run: yarn install --network-timeout 10000
- name: build
run: yarn build
build-windows:
runs-on: windows-latest
steps:
- uses: actions/checkout@v2
with:
ref: ${{ github.head_ref }}
fetch-depth: 0
- uses: actions/setup-node@v2
with:
node-version: "16"
- name: install
run: yarn install --network-timeout 10000
- name: build
run: yarn build
build-macos:
runs-on: macos-latest
steps:
- uses: actions/checkout@v2
with:
ref: ${{ github.head_ref }}
fetch-depth: 0
- uses: actions/setup-node@v2
with:
node-version: "16"
- name: install
run: yarn install --network-timeout 10000
- name: build
run: yarn build