Bump extensions from d6e1385
to 8f8f433
#1555
Workflow file for this run
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 (Auto) | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
submodules: recursive | |
- name: Install Node.js | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 14.x | |
cache: npm | |
- name: Install dependencies | |
run: npm ci | |
- name: Compile | |
run: npm run webpack:compile | |
- name: Package | |
run: npm run electron:package:dir |