This repository has been archived by the owner on May 16, 2024. It is now read-only.
Merge pull request #1 from GirlInPurple/dependabot/gradle/ch.qos.logb… #4
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 Electron | |
on: | |
push: | |
branches: [ "master" ] | |
pull_request: | |
branches: [ "master" ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
permissions: | |
contents: read | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 18 | |
- name: Install Packages | |
working-directory: ./launcher | |
run: npm ci | |
- name: Build Launcher | |
working-directory: ./launcher | |
run: npm run start | |
- name: Capture Build Artifacts | |
uses: actions/upload-artifact@v3 | |
with: | |
name: Launcher Artifacts | |
path: launcher/out/make/ |