Skip to content

idk anymore

idk anymore #12

Workflow file for this run

name: Build CPClient
# Controls when the action will run.
on:
# Triggers the workflow on push for production branch
push:
branches:
- "**"
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
# This workflow contains a single job called "build"
build:
# The type of runner that the job will run on
name: Build CPClient
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [macos-latest, ubuntu-latest, windows-latest]
steps:
- name: Check out the repository
uses: actions/checkout@v3
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: '16.x'
- name: Install dependencies
run: yarn install
- name: Build
run: yarn build-tsc && electron ./compiled/main.js
- name: Lint
run: eslint -c .eslintrc --ext .ts ./src
#- name: Make and Publish (Ubuntu)
# if: startsWith(matrix.os, 'ubuntu')
# run: yarn build-linux
- name: Make and Publish (WINDOWS)
if: startsWith(matrix.os, 'windows')
run: yarn build-win
#- name: Make and Publish (MAC)
# if: startsWith(matrix.os, 'macos')
# run: yarn build-mac
- name: Upload Artifacts
uses: actions/upload-artifact@v3
with:
name: artifacts
path: ./dist/