Skip to content

deploy 4.1.3

deploy 4.1.3 #344

Workflow file for this run

name: Build
on:
push:
branches:
- main
jobs:
build-ubuntu:
runs-on: ubuntu-latest
env:
NODE_OPTIONS: "--max_old_space_size=5120"
steps:
- uses: actions/checkout@v2
with:
ref: ${{ github.head_ref }}
fetch-depth: 0
- uses: actions/[email protected]
with:
cache: "yarn"
node-version: "20"
- name: install
run: yarn install
- name: cycle
run: yarn cycle
- 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: "20"
# - name: windows-defender
# run: powershell -Command Add-MpPreference -ExclusionPath "."
# - name: install
# run: yarn install --network-timeout 1000000
# - 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: "20"
# - name: install
# run: yarn install
# - name: build
# run: yarn build