Skip to content

chore: bump version to 1.1.2 #48

chore: bump version to 1.1.2

chore: bump version to 1.1.2 #48

Workflow file for this run

name: CI
on:
push:
branches:
- main
- development
pull_request:
types: [opened, synchronize]
jobs:
build:
name: Build and Test
timeout-minutes: 15
runs-on: ubuntu-latest
strategy:
matrix:
node-version: ['18.x', '20.x', '22.x']
steps:
- name: Check out code
uses: actions/checkout@v4
with:
fetch-depth: 2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- name: Install dependencies
run: npm ci
- name: Build
run: npm run build
- name: Test
run: npm run test