Skip to content

fix(docs): deletes old CI/CD pipeline #2

fix(docs): deletes old CI/CD pipeline

fix(docs): deletes old CI/CD pipeline #2

Workflow file for this run

name: CI/CD Workflow
on:
pull_request:
push:
branches:
- main
jobs:
setup:
uses: ./.github/workflows/_base.yml@v1

Check failure on line 11 in .github/workflows/ci.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/ci.yml

Invalid workflow file

invalid value workflow reference: cannot specify version when calling local workflows
with:
node_version: '18'
commitlint:
needs: setup
uses: ./.github/workflows/commitlint.yml@v1
with:
edit: '.git/COMMIT_EDITMSG'
eslint:
needs: setup
uses: ./.github/workflows/eslint-check.yml@v1
with:
maxWarnings: '0'
prettier:
needs: setup
uses: ./.github/workflows/prettier-check.yml@v1
generate-writerside-docs:
needs: setup
if: github.ref == 'refs/heads/main'
uses: ./.github/workflows/generate_writerside_docs.yml@v1
with:
npm_token: ${{ secrets.NPM_TOKEN }}
github_token: ${{ secrets.GITHUB_TOKEN }}
semantic-release:
needs: setup
if: github.ref == 'refs/heads/main'
uses: ./.github/workflows/semantic-release.yml@v1
with:
node_version: '18'
npm_token: ${{ secrets.NPM_TOKEN }}
github_token: ${{ secrets.GITHUB_TOKEN }}