Skip to content

chore(release): enable first publish (version floor 9.29.1 + minor changeset + canary path) #16

chore(release): enable first publish (version floor 9.29.1 + minor changeset + canary path)

chore(release): enable first publish (version floor 9.29.1 + minor changeset + canary path) #16

Workflow file for this run

name: CI
on:
pull_request:
push:
branches:
- main
- v8
permissions:
contents: read
jobs:
build-test:
name: Build & test (node ${{ matrix.node-version }})
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
node-version: ['18.20', '20', '22']
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
- name: Install
run: npm ci
- name: Build
run: npm run build
- name: Test
run: npm test