Skip to content

docs: add 1.9.0-beta.3 changelog entry #38

docs: add 1.9.0-beta.3 changelog entry

docs: add 1.9.0-beta.3 changelog entry #38

Workflow file for this run

name: CI
on:
push:
branches: [main, master]
pull_request:
branches: [main, master]
jobs:
lint:
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v5
- name: Use Node.js 24
uses: actions/setup-node@v5
with:
node-version: 24
- name: Install dependencies
run: npm install
- name: Build
run: npm run build
- name: Check formatting and lint
run: npm run format:check
test:
runs-on: ubuntu-24.04
needs: lint
strategy:
matrix:
node-version: [22, 24]
steps:
- uses: actions/checkout@v5
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v5
with:
node-version: ${{ matrix.node-version }}
- name: Install dependencies
run: npm install
- name: Create test fixtures
run: npm run test:fixtures
- name: Run tests
run: npm test