Skip to content

fix(sync): let auto-commit recognise its own translation output (#112) #221

fix(sync): let auto-commit recognise its own translation output (#112)

fix(sync): let auto-commit recognise its own translation output (#112) #221

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
permissions:
contents: read
jobs:
test:
name: Node ${{ matrix.node-version }}
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [24]
steps:
- uses: actions/checkout@v7
- uses: actions/setup-node@v7
with:
node-version: ${{ matrix.node-version }}
cache: npm
- run: npm ci
- run: npm run lint
- run: npm run type-check
- run: npm run check-deps
- run: npm run build
- run: npm test