Skip to content

Bump version to 1.10.1-alpha. Bump download link version to 1.10.0. #1323

Bump version to 1.10.1-alpha. Bump download link version to 1.10.0.

Bump version to 1.10.1-alpha. Bump download link version to 1.10.0. #1323

Workflow file for this run

name: CI on Ubuntu
on:
push:
branches:
- '**' # matches every branch
pull_request:
branches:
- main
jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-20.04]
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} # for electron-builder
steps:
- uses: actions/checkout@v2
- name: Use Node.js 20.16.0
uses: actions/setup-node@v1
with:
node-version: 20.16.0
- name: npm ci
run: npm ci
- name: npm run lint:ng
run: npm run lint:ng
- name: npm run lint:script
run: npm run lint:script
- name: npm run test:unit:ng
uses: GabrielBB/[email protected]
with:
run: npm run test:unit:ng
- name: npm run test:unit:em:main
uses: GabrielBB/[email protected]
with:
run: npm run test:unit:em:main
- name: npm run test:unit:em:renderer
uses: GabrielBB/[email protected]
with:
run: npm run test:unit:em:renderer
- name: npm run test:package
uses: GabrielBB/[email protected]
with:
run: npm run test:package
# Uncomment the lines below to publish Linux package to GitHub Releases.
#
# - name: '[Publish to GitHub Releases] Clean-up by "git clean -fdx" (1st time)'
# run: git clean -fdx
#
# - name: '[Publish to GitHub Releases] Clean-up by "git clean -fdx" (2nd time to be sure)'
# run: git clean -fdx
#
# - name: '[Publish to GitHub Releases] npm ci'
# run: npm ci
#
# - name: '[Publish to GitHub Releases] Create and publish Linux package'
# uses: nick-invision/[email protected]
# with:
# timeout_minutes: 60
# max_attempts: 10
# retry_on: error
# command: npm run publish:linux # To publish, GH_TOKEN environment variable needs to be set.