Skip to content

chore(deps): bump the production-deps group across 1 directory with 4 updates #47

chore(deps): bump the production-deps group across 1 directory with 4 updates

chore(deps): bump the production-deps group across 1 directory with 4 updates #47

Workflow file for this run

name: CI
on:
pull_request:
branches: [main]
push:
branches: [main]
concurrency:
group: ci-${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: ${{ github.event_name == 'pull_request' }}
permissions:
contents: read
jobs:
test-all:
runs-on: ubuntu-latest
timeout-minutes: 15
steps:
- name: Checkout
uses: actions/checkout@v6
- name: Setup Node
uses: actions/setup-node@v6
with:
node-version: "20"
- name: Install deps
run: npm ci
- name: Run tests and static checks
run: npm run test:all