Skip to content

feat: Add ag-grid-filtered-row-count (#4) #3

feat: Add ag-grid-filtered-row-count (#4)

feat: Add ag-grid-filtered-row-count (#4) #3

Workflow file for this run

name: Publish articles
on:
push:
branches:
- main
workflow_dispatch:
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: false
jobs:
publish_articles:
runs-on: ubuntu-latest
environment: publish
timeout-minutes: 5
steps:
- uses: actions/checkout@v4
with:
token: ${{ secrets.GH_PAT_CHECKOUT }}
fetch-depth: 0
- uses: actions/setup-node@v4
with:
node-version-file: ".node-version"
cache: "npm"
- run: npm ci
- run: npm run qiita publish --all
env:
QIITA_TOKEN: ${{ secrets.QIITA_TOKEN }}
- run: |
git add ./public/*
if ! git diff --staged --exit-code --quiet; then
git commit -m 'Updated by qiita-cli'
git push --force
fi