1
0
mirror of https://github.com/cotes2020/jekyll-theme-chirpy.git synced 2026-01-23 07:11:39 +00:00
Files
jekyll-theme-chirpy/.github/workflows/lint-scss.yml
dependabot[bot] 8d94feb938 build(deps): bump actions/setup-node from 5 to 6 in the gh-actions group
Bumps the gh-actions group with 1 update: [actions/setup-node](https://github.com/actions/setup-node).


Updates `actions/setup-node` from 5 to 6
- [Release notes](https://github.com/actions/setup-node/releases)
- [Commits](https://github.com/actions/setup-node/compare/v5...v6)

---
updated-dependencies:
- dependency-name: actions/setup-node
  dependency-version: '6'
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: gh-actions
...

Signed-off-by: dependabot[bot] <support@github.com>
2025-10-20 19:07:44 +00:00

27 lines
431 B
YAML

name: Lint SCSS
on:
push:
paths:
- "_sass/**/*.scss"
pull_request:
paths:
- "_sass/**/*.scss"
jobs:
lint-scss:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- name: Setup Node.js
uses: actions/setup-node@v6
with:
node-version: lts/*
- name: Install Dependencies
run: npm i
- name: Lint SCSS
run: npm run lint:scss