Skip to content

feat: add Stream Deck 6.7 (#10) #59

feat: add Stream Deck 6.7 (#10)

feat: add Stream Deck 6.7 (#10) #59

Workflow file for this run

# yaml-language-server: $schema=https://json.schemastore.org/github-workflow.json
name: Build
on:
push:
branches:
- "main"
paths-ignore:
- "**.md"
pull_request:
branches:
- "main"
paths-ignore:
- "**.md"
defaults:
run:
shell: bash
jobs:
Build:
runs-on: "ubuntu-latest"
steps:
- name: "📥 Checkout"
uses: actions/checkout@v4
- name: "🗃️ Setup Node"
uses: actions/setup-node@v4
with:
node-version: "20.5.1"
- name: "📐 Install dependencies"
run: npm ci
- name: "🏗️ Build"
run: npm run build
- name: "🖌️ Lint"
run: npm run lint
- name: "🧪 Test"
run: npm run test:ci