Skip to content

chore(deps): bump the production group with 2 updates #85

chore(deps): bump the production group with 2 updates

chore(deps): bump the production group with 2 updates #85

Workflow file for this run

name: Pull Request
on: pull_request
jobs:
check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
with:
fetch-depth: 0
- name: Use Node.js
uses: actions/setup-node@v6
with:
node-version: 22
- name: npm install
run: npm install
- name: Check format
run: npm run format:check
- name: Check commit messages
run: npx commitlint --from ${{ github.event.pull_request.head.sha }}~${{ github.event.pull_request.commits }} --to ${{ github.event.pull_request.head.sha }} --verbose
- name: Lint
run: npm run lint
- name: Test
run: npm run test
- name: Build
run: npm run build