Skip to content

Bump @babel/preset-env from 7.24.6 to 7.24.7 #1121

Bump @babel/preset-env from 7.24.6 to 7.24.7

Bump @babel/preset-env from 7.24.6 to 7.24.7 #1121

Workflow file for this run

name: Build & release
on:
push:
branches:
- 'master'
pull_request:
branches:
- 'master'
workflow_dispatch:
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
jobs:
build-release:
name: Build and release the Electron App
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ macos-latest, ubuntu-latest ]
steps:
- name: Check out Git repository
uses: actions/checkout@v3
- name: Install Node.js, NPM and Yarn
uses: actions/setup-node@v3
with:
node-version: 18
cache: 'npm'
- name: Build
run: |
npm install codecov --location=global
npm install
npm run build
npm run test
codecov
- name: Distribute Mac OS X and Windows binaries
if: ${{ matrix.os == 'macos-latest' }}
run: |
npm run dist -- --mac --win
- name: Distribute Linux binaries
if: ${{ matrix.os == 'ubuntu-latest' }}
run: |
npm run dist