Skip to content

feat: add GitHub issue templates (#7) #13

feat: add GitHub issue templates (#7)

feat: add GitHub issue templates (#7) #13

Workflow file for this run

name: Build
on:
push:
branches: ["main"]
paths-ignore:
- "!.vscode/**"
pull_request:
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
steps:
- uses: actions/checkout@v4
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: "22"
cache: "npm"
- name: Install dependencies
run: npm ci
- name: Build
run: npm run build