mirror of
https://github.com/bitburner-official/bitburner-src.git
synced 2024-11-08 08:43:53 +01:00
Create test workflow for linux electron build
This commit is contained in:
parent
75481aa195
commit
26c7556091
29
.github/workflows/electronbuild.yaml
vendored
Normal file
29
.github/workflows/electronbuild.yaml
vendored
Normal file
@ -0,0 +1,29 @@
|
||||
name: "Test building electron in ubuntu 20.04"
|
||||
|
||||
on:
|
||||
workflow_dispatch:
|
||||
|
||||
permissions:
|
||||
contents: read
|
||||
pages: write
|
||||
id-token: write
|
||||
|
||||
concurrency:
|
||||
group: "pages"
|
||||
cancel-in-progress: true
|
||||
|
||||
jobs:
|
||||
deploy:
|
||||
runs-on: ubuntu-20.04
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
- uses: actions/setup-node@v3
|
||||
with:
|
||||
node-version: 16
|
||||
- run: npm ci
|
||||
- run: npm run build
|
||||
- run: npm run electron
|
||||
- uses: actions/upload-artifact@v3
|
||||
with:
|
||||
path: ".build"
|
||||
|
Loading…
Reference in New Issue
Block a user