Skip to content

fix: use TypeScript declarations from yaml-pptr 2.0.1 #994

fix: use TypeScript declarations from yaml-pptr 2.0.1

fix: use TypeScript declarations from yaml-pptr 2.0.1 #994

Workflow file for this run

name: Kyara CI
on:
workflow_dispatch:
push:
branches: [ main ]
paths-ignore:
- '**.md'
- 'docs/**'
pull_request:
branches: [ main ]
types: [opened, synchronize, reopened]
paths-ignore:
- '**.md'
- 'docs/**'
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
- uses: actions/setup-node@53b83947a5a98c8d113130e565377fae1a50d02f # v6
with:
node-version-file: '.nvmrc'
cache: 'npm'
- name: Install dependencies
run: npm ci
- name: Lint
run: npm run lint
- name: Build
run: npm run build
- name: Test
run: npm test