Skip to content

build(deps-dev): bump @tada5hi/commitlint-config from 1.1.7 to 1.2.2 #657

build(deps-dev): bump @tada5hi/commitlint-config from 1.1.7 to 1.2.2

build(deps-dev): bump @tada5hi/commitlint-config from 1.1.7 to 1.2.2 #657

Workflow file for this run

# This workflow will do a clean install of node dependencies, cache/restore them, 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:
branches: [master, next, beta, alpha, develop]
pull_request:
branches: [master, next, beta, alpha, develop]
permissions:
packages: write
contents: write
issues: write
pull-requests: write
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.x]
steps:
- uses: actions/checkout@v4
- 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 package
run: |
npm run build
- name: Test package
run: |
npm run test
- name: Release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
run: npx semantic-release