Skip to content

v1.5.0: Table UX improvements and pitch black theme #6

v1.5.0: Table UX improvements and pitch black theme

v1.5.0: Table UX improvements and pitch black theme #6

Workflow file for this run

name: Build and Release
on:
push:
tags:
- 'v*'
permissions:
contents: write
jobs:
release:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [macos-latest, windows-latest, ubuntu-latest]
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: '20'
cache: 'npm'
- name: Install dependencies
run: npm ci
- name: Build and publish
run: npm run release
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}