Skip to content

fix(deps): update module github.com/redis/go-redis/v9 to v9.7.3 [security] (release-0.32) #5947

fix(deps): update module github.com/redis/go-redis/v9 to v9.7.3 [security] (release-0.32)

fix(deps): update module github.com/redis/go-redis/v9 to v9.7.3 [security] (release-0.32) #5947

Workflow file for this run

name: website
on:
push:
branches:
- 'main'
- 'release-**'
pull_request:
types:
- opened
- reopened
- synchronize
- ready_for_review
branches:
- 'main'
- 'release-**'
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
cancel-in-progress: true
jobs:
changes:
outputs:
should-run-website-check: ${{ steps.changes.outputs.src == 'true' }}
if: github.event.pull_request.draft == false
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
- uses: dorny/paths-filter@de90cc6fb38fc0963ad72b210f1f284cd68cea36 # v3
id: changes
with:
filters: |
src:
- 'runatlantis.io/**'
- 'package-lock.json'
- 'package.json'
- '.github/workflows/website.yml'
# Check that the website builds and there's no missing links.
website-check:
needs: [changes]
if: github.event.pull_request.draft == false && needs.changes.outputs.should-run-website-check == 'true'
name: Website Check
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
- name: markdown-lint
uses: DavidAnson/markdownlint-cli2-action@eb5ca3ab411449c66620fe7f1b3c9e10547144b0 # v18
with:
config: .markdownlint.yaml
globs: 'runatlantis.io/**/*.md'
- name: Link Checker
id: lychee
uses: lycheeverse/lychee-action@f613c4a64e50d792e0b31ec34bbcbba12263c6a6 # v2.3.0
with:
args: --verbose --no-progress ./runatlantis.io
- name: setup npm
uses: actions/setup-node@39370e3970a6d050c480ffad4ff0ed4d3fdee5af # v4
with:
node-version: '20'
cache: 'npm'
- name: run http-server
run: |
# build site
npm install
npm run website:build
# start http-server for integration testing
npx http-server runatlantis.io/.vitepress/dist &
- name: Run Playwright E2E tests
run: |
npx playwright install --with-deps
npm run e2e
skip-website-check:
needs: [changes]
if: needs.changes.outputs.should-run-website-check == 'false'
name: Website Check
runs-on: ubuntu-latest
steps:
- run: 'echo "No build required"'