Skip to content

Commit

Permalink
Merge pull request #3 from spike-rabbit/build/add-ci-build-job
Browse files Browse the repository at this point in the history
build(ci): introduce initial GitHub actions workflow
  • Loading branch information
timowolf authored Dec 23, 2024
2 parents b9a9080 + 03796de commit 06e5128
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
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

0 comments on commit 06e5128

Please sign in to comment.