Skip to content

chore(deps): bump gridstack from 12.6.0 to 13.0.2 #94

chore(deps): bump gridstack from 12.6.0 to 13.0.2

chore(deps): bump gridstack from 12.6.0 to 13.0.2 #94

Workflow file for this run

name: CI
on:
push:
branches: [ '**' ]
pull_request:
branches: [ '**' ]
permissions:
contents: read
jobs:
build:
name: Typecheck, lint, test, build
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: '20'
cache: 'npm'
- name: Install dependencies
run: npm ci
- name: Type check
run: npx tsc --noEmit
- name: Lint
run: npm run lint
- name: Run tests
run: npm test -- --ci
- name: Build
run: npm run build