Skip to content

Publish v0.12.3

Publish v0.12.3 #38

Workflow file for this run

name: Continuous Integration
on:
push:
branches:
- main
- 'v[0-9]+.[0-9]+.x'
pull_request:
branches:
- '**'
jobs:
build:
name: Build
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.x, 20.x]
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Setup Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- name: Install dependencies
run: npm ci
- name: Run linters
run: npm run lint:build
- name: Run tests
run: npm run test:build
- name: Build package
run: npm run dist