Skip to content

chore(deps): lock file maintenance #222

chore(deps): lock file maintenance

chore(deps): lock file maintenance #222

Workflow file for this run

name: CI
on:
push:
branches:
- main
- renovate/**
pull_request:
workflow_dispatch:
concurrency:
group: ${{ github.workflow }}-${{ github.event.number || github.ref }}
cancel-in-progress: true
jobs:
prettier-format-check:
name: Format Check
uses: bymbly/gha-workflows/.github/workflows/prettier-format-check.yaml@main
markdown-lint-check:
name: Lint Check
uses: bymbly/gha-workflows/.github/workflows/markdown-lint-check.yaml@main
eslint-lint-check:
name: ESLint Check
uses: bymbly/gha-workflows/.github/workflows/eslint-lint-check.yaml@main
npm-test:
name: npm Test
uses: bymbly/gha-workflows/.github/workflows/npm-test.yaml@main
publish-npm-package:
name: Publish NPM Package
needs:
[prettier-format-check, markdown-lint-check, eslint-lint-check, npm-test]
if: github.ref == 'refs/heads/main' && github.event_name == 'push'
permissions:
contents: write
packages: write
issues: write
pull-requests: write
id-token: write # required for OIDC publishing
uses: bymbly/gha-workflows/.github/workflows/npm-semantic-release.yaml@main
with:
registry-url: "https://registry.npmjs.org/"