Skip to content

build(deps): bump sass from 1.78.0 to 1.85.0 #24

build(deps): bump sass from 1.78.0 to 1.85.0

build(deps): bump sass from 1.78.0 to 1.85.0 #24

name: "New changes validation"
on:
pull_request: # yamllint disable-line rule:empty-values
jobs:
validate-yaml-changes:
runs-on: "ubuntu-latest"
# NOTE: validating YAML changes takes around 1 minute.
# If this job takes more than 5 minutes, it means that something is wrong.
timeout-minutes: 5
steps:
- name: "Checkout ${{ github.event.repository.name }}"
uses: "actions/checkout@v4"
- name: "Run YAML linter"
run: "docker run --rm -v ${{ github.workspace }}:/linter_workdir/repo spawnlang/yaml-linter:latest"
validate-markdown-changes:
runs-on: "ubuntu-latest"
# NOTE: validating Markdown changes takes around 1 minute.
# If this job takes more than 5 minutes, it means that something is wrong.
timeout-minutes: 5
steps:
- name: "Checkout ${{ github.event.repository.name }}"
uses: "actions/checkout@v4"
- name: "Run Markdown linter"
run: "docker run --rm -v ${{ github.workspace }}:/linter_workdir/repo spawnlang/markdown-linter:latest"