Skip to content

Merge pull request #3 from spike-rabbit/build/add-ci-build-job #1

Merge pull request #3 from spike-rabbit/build/add-ci-build-job

Merge pull request #3 from spike-rabbit/build/add-ci-build-job #1

Workflow file for this run

name: Build
on:
push:
branches:
- main
pull_request:
jobs:
build-and-test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Use Node.js 22.x
uses: actions/setup-node@v4
with:
node-version: 22.x
cache: 'npm'
- run: npm ci
- run: npm run build
- run: npm run format:check
- run: npm run lint:commit
- run: npm run lint
- run: npm run plugin:test