Skip to content

ci: setup pipeline (#4) #3

ci: setup pipeline (#4)

ci: setup pipeline (#4) #3

Workflow file for this run

name: "CI Build"
on:
push:
branches: ["main"]
pull_request:
branches: ["main"]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v5.0.1
- name: Use Node.js 24.x
uses: actions/setup-node@2028fbc5c25fe9cf00d9f06a71cc4710d4507903 # v6.0.0
with:
node-version: 24.x
cache: "npm"
- run: npm ci
- run: npx prettier . --check
- run: npm run build