Skip to content

Bump js-yaml

Bump js-yaml #11

Workflow file for this run

name: CI
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version-file: '.node-version'
- name: Install dependencies
run: npm install
- name: Lint Check
run: npm run lint
- name: Prettier Check
run: npx prettier --check .
- name: Build
run: npm run build