Skip to content

chore(deps): bump semver from 5.7.1 to 7.7.4 in /examples/sls #5

chore(deps): bump semver from 5.7.1 to 7.7.4 in /examples/sls

chore(deps): bump semver from 5.7.1 to 7.7.4 in /examples/sls #5

Workflow file for this run

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