Skip to content

chore(deps): update dependency lint-staged to v15.4.0 #2336

chore(deps): update dependency lint-staged to v15.4.0

chore(deps): update dependency lint-staged to v15.4.0 #2336

name: Build and Release
permissions:
contents: write
issues: write
on:
push:
env:
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
jobs:
main:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: actions/setup-node@v4
with:
node-version: "22.x"
cache: "npm"
- name: Install dependencies
run: npm ci --no-audit
- name: Compile TypeScript
run: npx tsc
- name: Check source code with eslint
run: npx eslint ./
- name: Check if source code is properly formatted
run: npx prettier -c ./
- name: Run tests
run: npm test
- name: Semantic release
run: npx semantic-release