You've already forked AstralRinth
forked from didirus/AstralRinth
* Code signing + auto updater * remove dist * update actions * fixes * fix more * commit * fix cache dir * quotes * fix hopefully? * why yaml * Fix cache dep path * Fix updating artifacts * fix ubuntu ver * enable autoupdater * fix pubkey * fix invalid config * pass in signing vars * update pubkey * Improve compile times
31 lines
653 B
YAML
31 lines
653 B
YAML
name: GUI Build + Lint
|
|
|
|
on:
|
|
push:
|
|
branches: [master]
|
|
pull_request:
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
defaults:
|
|
run:
|
|
working-directory: ./theseus_gui
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v3
|
|
|
|
- name: Sync node version and setup cache
|
|
uses: actions/setup-node@v3
|
|
with:
|
|
node-version: 16
|
|
cache: 'yarn'
|
|
cache-dependency-path: "theseus_gui"
|
|
|
|
- name: Install dependencies
|
|
run: yarn install --immutable --immutable-cache --check-cache
|
|
|
|
- name: Run Lint
|
|
run: yarn run lint
|
|
|
|
- name: Build
|
|
run: yarn run build |