Skip to content

build(deps): bump postcss from 8.5.16 to 8.5.25 (#861) #2905

build(deps): bump postcss from 8.5.16 to 8.5.25 (#861)

build(deps): bump postcss from 8.5.16 to 8.5.25 (#861) #2905

Workflow file for this run

name: CI
on:
push:
branches: [main]
merge_group:
pull_request:
branches: [main]
# Automatically cancel in-progress actions on the same branch
concurrency:
group: ${{ github.workflow }}-${{ github.event_name == 'pull_request_target' && github.head_ref || github.ref }}
cancel-in-progress: true
env:
NODE_OPTIONS: "--max_old_space_size=4096"
jobs:
lint:
name: Lint
runs-on: ubuntu-latest
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
steps:
- name: Checkout
uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
- name: Setup Node
uses: actions/setup-node@820762786026740c76f36085b0efc47a31fe5020 # v7.0.0
with:
node-version-file: ".nvmrc"
cache: npm
- name: Run rumdl
uses: rvben/rumdl@d4b387e11401873129035f3ed1ade1395ef09632 # v0.2.43
with:
version: 0.2.9
path: "."
fail-on-error: true
- name: Install dependencies
run: npm ci
- name: Run Check
run: npm run check
- name: Run linter
# npm run lint includes lint:markdown which is already handled bby the rumdl
# step above
run: npm run lint:src
- name: Run linkcheck
run: npm run linkcheck