Skip to content

chore(deps): bump actions/checkout from 4 to 6 #294

chore(deps): bump actions/checkout from 4 to 6

chore(deps): bump actions/checkout from 4 to 6 #294

Workflow file for this run

name: Semiotic
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
testing:
runs-on: ubuntu-latest
steps:
- name: Checkout source code
uses: actions/checkout@v6
- name: Use Node.js
uses: actions/setup-node@v4
with:
node-version: 18.x
cache: "npm"
- name: Install dependencies
run: npm install --legacy-peer-deps
- name: Build library
run: npm run dist
- name: Build MCP server
run: npm run build:mcp
- name: Run tests
run: npm test
- name: Run type check
run: npm run typescript