Skip to content

Bump version from 1.1.4 to 1.1.5 #124

Bump version from 1.1.4 to 1.1.5

Bump version from 1.1.4 to 1.1.5 #124

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: CI
on:
push:
pull_request:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- name: Use Node.js
uses: actions/setup-node@v6
with:
node-version: 22.12.0
- name: Remove old package-lock.json
run: |
rm -rf package-lock.json
- run: npm install
- run: npm ci
- run: script/build
- run: npm exec -- prettier --check src