Skip to content

Release v0.0.27

Release v0.0.27 #14

Workflow file for this run

name: CI / Test
on:
push:
branches:
- '*' # matches every branch that doesn't contain a '/'
- '*/*' # matches every branch containing a single '/'
- '**' # matches every branch
- '!main' # excludes master - it triggers release and tests are run before release build
jobs:
test:
runs-on: ubuntu-latest
timeout-minutes: 8
steps:
- uses: actions/checkout@v6
- uses: actions/setup-node@v6
with:
node-version: 24
cache: 'npm'
- run: npm ci
- run: npm test