Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/codecov.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
runs-on: ubuntu-latest
timeout-minutes: 1
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- uses: formsort/action-check-codecov-config@v1

# !!! The codecov/project check should be required by GitHub !!!
Expand All @@ -38,7 +38,7 @@ jobs:
echo 0 | sudo tee /proc/sys/kernel/apparmor_restrict_unprivileged_userns

# Setup and install
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- uses: volta-cli/action@v4
- run: npm ci

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
# `npm publish --provenance`
id-token: write
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- uses: volta-cli/action@v4
- run: npm ci
- name: npm publish
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/repo-update.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
permissions:
repository-projects: write
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- run: |
DATA=$(jq --raw-output --compact-output '{description: .description, homepage: .homepage}' package.json)
curl \
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
run: |
echo 0 | sudo tee /proc/sys/kernel/apparmor_restrict_unprivileged_userns
# Setup and install
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- name: Use Node.js ${{ matrix.node-version }}
uses: volta-cli/action@v4
with:
Expand All @@ -47,7 +47,7 @@ jobs:
os: [ ubuntu, macos, windows ]
steps:
# Setup and install
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- uses: volta-cli/action@v4
- run: npm ci
# Test building
Expand All @@ -58,7 +58,7 @@ jobs:
timeout-minutes: 5
steps:
# Setup and install
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- uses: volta-cli/action@v4
- run: npm ci
# Test building & packing
Expand All @@ -73,14 +73,14 @@ jobs:
runs-on: ubuntu-latest
timeout-minutes: 2
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- run: docker run -v $PWD:/workdir ghcr.io/igorshubovych/markdownlint-cli:latest --ignore "packages/*/test/fixtures/**/*.md" --disable MD013 MD033 -- "**/*.md"

renovate-lint:
runs-on: ubuntu-latest
timeout-minutes: 1
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- uses: rinchsan/renovate-config-validator@v0.2.0
with:
pattern: 'renovate.json5'
Expand Down
Loading