Skip to content

Bump versions according to changesets #13

Bump versions according to changesets

Bump versions according to changesets #13

Workflow file for this run

name: Custom Node CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
build-and-test-custom-nodes:
runs-on: ubuntu-latest
defaults:
run:
working-directory: ./custom_nodes
steps:
- uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: 20
cache: 'npm'
cache-dependency-path: custom_nodes/package-lock.json
- name: Install dependencies
run: npm install
- name: Lint
run: npm run lint
- name: Check formatting
run: npm run check-format
- name: Build
run: npm run build
- name: Test
run: npm run test