Skip to content

chore(deps): update dependency commit-and-tag-version to ^12.1.0 (#39) #130

chore(deps): update dependency commit-and-tag-version to ^12.1.0 (#39)

chore(deps): update dependency commit-and-tag-version to ^12.1.0 (#39) #130

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build:
name: Building
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
node-version: [18]
architecture: [x64]
steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
submodules: true
fetch-depth: 1
- name: Setup Node environment
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
architecture: ${{ matrix.architecture }}
registry-url: https://registry.npmjs.org/
cache: 'yarn'
- name: Install dependencies
run: |
yarn
- name: Build package
run: |
yarn build