Skip to content
Merged
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
32 changes: 6 additions & 26 deletions .github/workflows/lint.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@ name: "Lint"

on:
workflow_dispatch:
pull_request:
branches: [master]
push:
branches: [master]
pull_request:
branches: [master]

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
Expand All @@ -22,41 +22,23 @@ jobs:
- name: "Checkout"
uses: actions/checkout@v6

- name: "Debug event.json"
continue-on-error: true
run: cat "${GITHUB_EVENT_PATH}"
- name: "Debug CTX github"
continue-on-error: true
env:
GITHUB_CTX: ${{ toJSON(github) }}
run: echo "$GITHUB_CTX"
- name: "Debug Environment"
continue-on-error: true
run: env

- name: "Setup Node 24"
uses: actions/setup-node@v6
with:
node-version: 24

- name: "Install"
run: |
npm ci

- name: "Build"
if: ${{ !cancelled() }}
run: |
npm run build
id: install
run: npm ci

#- name: "esLint"
#- name: "eslint"
# if: ${{ !cancelled() }}
# run: |
# npm run lint

- name: "prettier"
if: ${{ !cancelled() }}
run: |
npm run prettier:check
run: npm run prettier:check

- name: "yamllint"
if: ${{ !cancelled() }}
Expand All @@ -71,5 +53,3 @@ jobs:
- name: "actionlint"
if: ${{ !cancelled() }}
uses: cssnr/actionlint-action@v1
with:
shellcheck_opts: -e SC2129
8 changes: 4 additions & 4 deletions .github/workflows/pages.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name: "Pages"
on:
workflow_dispatch:
push:
branches: ["master"]
branches: [master]
paths:
- ".github/workflows/pages.yaml"
- ".vitepress/**"
Expand All @@ -15,7 +15,7 @@ env:
purge-domain: ""

concurrency:
group: pages
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true

jobs:
Expand Down Expand Up @@ -47,7 +47,7 @@ jobs:
steps:
- name: "Deploy Pages"
id: deployment
uses: actions/deploy-pages@v4
uses: actions/deploy-pages@v5

- name: "Send Deploy Notification"
if: ${{ !cancelled() }}
Expand Down Expand Up @@ -79,7 +79,7 @@ jobs:
crawler_user_id: ${{ secrets.CRAWLER_USER_ID }}
crawler_api_key: ${{ secrets.CRAWLER_API_KEY }}

- name: "Send Post-Deploy Notification"
- name: "Send Discord Notification"
if: ${{ failure() }}
uses: sarisia/actions-status-discord@eb045afee445dc055c18d3d90bd0f244fd062708 # v1.16.0
with:
Expand Down
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,8 @@ Documentation for the [Docker Stack Deploy Action](https://github.com/cssnr/stac

- https://docker-deploy.cssnr.com/

[![View Documentation](https://img.shields.io/badge/view_documentation-blue?style=for-the-badge&logo=googledocs&logoColor=white)](https://docker-deploy.cssnr.com/)

These [docs](docs) are **written in plain text** using Markdown and built with [VitePress](https://vitepress.dev/).

| Location | Description |
Expand Down
Loading
Loading