Skip to content

🔖 release: @algorithm.ts/base64@4.0.4, @algorithm.ts/bellman… #1

🔖 release: @algorithm.ts/base64@4.0.4, @algorithm.ts/bellman…

🔖 release: @algorithm.ts/base64@4.0.4, @algorithm.ts/bellman… #1

Workflow file for this run

# This workflow will do a clean install of node dependencies, build the source
# code and run tests across different versions of node
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions
name: Build
on:
push:
branches:
- main
- release-*
pull_request:
branches:
- main
- release-*
workflow_dispatch:
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
build:
runs-on: ubuntu-latest
timeout-minutes: 15
strategy:
matrix:
node:
- 20
- 22
- 24
steps:
- name: Checkout 🛎️
uses: actions/checkout@v5
- name: Install pnpm
uses: pnpm/action-setup@v4
- name: Use Node.js ${{ matrix.node }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node }}
cache: 'pnpm'
- name: Install dependencies
run: pnpm install --frozen-lockfile
- name: Build
run: pnpm build
- name: Test
run: pnpm test:coverage