build(deps): bump sass from 1.78.0 to 1.85.0 #24
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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" |