Skip to content

chore: Build desktop application with github actions #3

chore: Build desktop application with github actions

chore: Build desktop application with github actions #3

Workflow file for this run

name: Build
on:
push:
branches: [main, dev, staging]
pull_request:
concurrency:
group: build-${{ github.ref }}
cancel-in-progress: true
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: 16.x
cache: 'yarn'
- name: Install JS dependencies
run: yarn --immutable
- name: Lint
run: yarn build:linux