Skip to content

Release 0.3.3

Release 0.3.3 #248

Workflow file for this run

name: CI
on:
pull_request:
types: [opened, synchronize]
jobs:
test:
name: Testing on ${{ matrix.platform }}
timeout-minutes: 20
strategy:
fail-fast: false
matrix:
# Mirrors the platforms and Node.js version @elek-io/core tests on
platform: [ubuntu-24.04, macos-15-intel, macos-15, windows-2025]
runs-on: ${{ matrix.platform }}
steps:
- name: Check out code
uses: actions/checkout@v4
with:
fetch-depth: 1
- name: Install pnpm
uses: pnpm/action-setup@v4
- name: Setup Node.js environment
uses: actions/setup-node@v4
with:
node-version-file: '.node-version'
cache: 'pnpm'
- name: Install dependencies
run: pnpm install --frozen-lockfile
- name: Run lint, check types and formatting
run: pnpm run lint && pnpm run check-types && pnpm run check-format
# - name: Identify misconfigurations and security anti-patterns
# uses: doyensec/electronegativity-action@v2
# - name: Upload report
# uses: github/codeql-action/upload-sarif@v1
# with:
# sarif_file: ../electronegativity_results
- name: Build
run: pnpm run build
# Uncomment if necessary
# For example to inspect the build applications
- name: Upload artifact
uses: actions/upload-artifact@v4
with:
name: artifact_${{ matrix.platform }}
path: |
dist/*.exe
dist/*.dmg
dist/*.zip
dist/*.AppImage
dist/*.snap
dist/*.deb
if-no-files-found: error