This repository has been archived by the owner on Jan 30, 2024. It is now read-only.
v1.0.6 #1159
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build | |
on: push | |
jobs: | |
build_on_linux: | |
name: 'Check build on Linux' | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: 18.13 | |
- name: Install dependencies | |
run: yarn | |
- name: Build application | |
run: yarn build:production | |
# build_on_mac: | |
# name: 'Check build on Mac' | |
# runs-on: macos-latest | |
# steps: | |
# - uses: actions/checkout@v3 | |
# - uses: actions/setup-node@v3 | |
# with: | |
# node-version: 18.13 | |
# - name: Install dependencies | |
# run: yarn | |
# - name: Build application | |
# run: yarn build:production | |
# build_on_win: | |
# name: 'Check build on Windows' | |
# runs-on: windows-latest | |
# steps: | |
# - uses: actions/checkout@v3 | |
# - uses: actions/setup-node@v3 | |
# with: | |
# node-version: 18.13 | |
# - name: Install dependencies | |
# run: yarn | |
# - name: Build application | |
# run: yarn build:production |