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
28 changes: 8 additions & 20 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 @@ -14,43 +14,31 @@ concurrency:
jobs:
lint:
name: "Lint"
if: ${{ !contains(github.event.head_commit.message, '#nolint') }}
runs-on: ubuntu-latest
timeout-minutes: 5
if: ${{ !contains(github.event.head_commit.message, '#nolint') }}

steps:
- name: "Checkout"
uses: actions/checkout@v6

- name: "Debug CTX github"
continue-on-error: true
env:
GITHUB_CTX: ${{ toJSON(github) }}
run: echo "$GITHUB_CTX"

- 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 Check"
- name: "prettier"
if: ${{ !cancelled() }}
run: |
npm run prettier:check
run: npm run prettier:check

- name: "yamllint"
if: ${{ !cancelled() }}
Expand Down
2 changes: 1 addition & 1 deletion .github/yamllint.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@ ignore-from-file: .gitignore

rules:
line-length:
max: 119
max: 120
7 changes: 6 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,14 @@

# Portainer Stack Deploy Action Docs

<a title="Portainer Stack Deploy Action" href="https://portainer-deploy.cssnr.com/" target="_blank">
<img alt="Portainer Stack Deploy Action" align="right" width="128" height="auto" src="https://raw.githubusercontent.com/cssnr/portainer-stack-deploy-docs/master/docs/public/images/logo/logo.png"></a>

Documentation for the [Portainer Stack Deploy Action](https://github.com/cssnr/portainer-stack-deploy-action).

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

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

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

Expand Down
Loading
Loading