Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: methods for messages #5

Merged
merged 22 commits into from
Aug 15, 2024
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
3 changes: 0 additions & 3 deletions .czrc

This file was deleted.

10 changes: 5 additions & 5 deletions .github/workflows/codeql.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,14 @@ on:
branches:
- main
paths:
- package.json
- src/index.ts
- src/**/*.ts
- src/**/*.d.ts
push:
branches:
- main
paths:
- package.json
- src/index.ts
- src/**/*.ts
- src/**/*.d.ts

permissions:
actions: read
Expand Down Expand Up @@ -45,7 +45,7 @@ jobs:
- name: Auto Build
uses: github/codeql-action/autobuild@v3

- name: Perform Analysis
- name: Perform Code Analysis
uses: github/codeql-action/analyze@v3
with:
category: /language:${{ matrix.language }}
1 change: 0 additions & 1 deletion .github/workflows/commitlint.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
name: Commit Lint

on:
pull_request:
push:

jobs:
Expand Down
7 changes: 0 additions & 7 deletions .github/workflows/editorconfig.yaml
Original file line number Diff line number Diff line change
@@ -1,11 +1,6 @@
name: Editorconfig

on:
workflow_run:
workflows:
- CodeQL
types:
- completed
pull_request:
branches:
- main
Expand All @@ -17,8 +12,6 @@ jobs:
editorconfig:
name: Editorconfig

if: ${{ github.event.workflow_run.conclusion == 'success' }}

runs-on: ubuntu-latest
timeout-minutes: 10

Expand Down
2 changes: 0 additions & 2 deletions .github/workflows/pre-commit.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,6 @@ jobs:

- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: 3.12

- name: Lint
uses: pre-commit/action@v3.0.1
7 changes: 0 additions & 7 deletions .github/workflows/prettier.yaml
Original file line number Diff line number Diff line change
@@ -1,11 +1,6 @@
name: Prettier

on:
workflow_run:
workflows:
- CodeQL
types:
- completed
pull_request:
branches:
- main
Expand All @@ -17,8 +12,6 @@ jobs:
prettier:
name: Prettier

if: ${{ github.event.workflow_run.conclusion == 'success' }}

runs-on: ubuntu-latest
timeout-minutes: 10

Expand Down
7 changes: 5 additions & 2 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name: Release
on:
workflow_run:
workflows:
- Spec
- ESLint
types:
- completed
push:
Expand Down Expand Up @@ -45,8 +45,11 @@ jobs:
- name: Install Dependencies
run: pnpm i

- name: Build
run: pnpm build

- name: Create Release
env:
GITHUB_TOKEN: ${{ steps.generate_token.outputs.token }}
# NPM_TOKEN: ${{ secrets.NPM_PUBLISH_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_PUBLISH_TOKEN }}
run: pnpm release
Original file line number Diff line number Diff line change
@@ -1,23 +1,20 @@
name: Markdown
name: Remark

on:
workflow_run:
workflows:
- CodeQL
types:
- completed
pull_request:
branches:
- main
paths:
- '**/*.md'
push:
branches:
- main
paths:
- '**/*.md'

jobs:
markdown:
name: Markdown

if: ${{ github.event.workflow_run.conclusion == 'success' }}
remark:
name: Remark

runs-on: ubuntu-latest
timeout-minutes: 10
Expand Down
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
# directories
# Directories
node_modules
8 changes: 4 additions & 4 deletions .prettierignore
Original file line number Diff line number Diff line change
@@ -1,19 +1,19 @@
# directories
# Directories
.husky

# files
# Files
*.md
pnpm-lock.yaml

# *rc
.czrc
.ecrc

# configs
# Configs
.editorconfig
.gitattributes

# ignores
# Ignores
.gitignore
.prettierignore
.remarkignore
1 change: 1 addition & 0 deletions .remarkignore
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
# Files
CHANGELOG.md
427 changes: 0 additions & 427 deletions CHANGELOG.md

Large diffs are not rendered by default.

Loading
Loading