Skip to content

Commit a0f46d6

Browse files
authored
chore: bump all (dev) deps (#133)
1 parent 1c08855 commit a0f46d6

33 files changed

Lines changed: 4275 additions & 3294 deletions

.changeset/better-crabs-prove.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
---
2+
"markuplint-angular-parser": patch
3+
"markuplint-angular-rules": patch
4+
---
5+
6+
fix: should run `build` for `release`

.github/workflows/autofix.yml

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
name: autofix.ci # For security reasons, the workflow in which the autofix.ci action is used must be named "autofix.ci".
2+
3+
on:
4+
pull_request:
5+
types:
6+
- opened
7+
- reopened
8+
- synchronize
9+
10+
concurrency:
11+
group: ${{ github.workflow }}-${{ github.ref }}
12+
cancel-in-progress: true
13+
14+
jobs:
15+
autofix:
16+
runs-on: ubuntu-latest
17+
steps:
18+
- name: Checkout Repo
19+
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
20+
21+
- name: Setup Node.js LTS
22+
uses: actions/setup-node@cdca7365b2dadb8aad0a33bc7601856ffabcc48e # v4
23+
with:
24+
node-version: lts/*
25+
cache: yarn
26+
27+
- name: Install dependencies
28+
run: yarn --immutable
29+
30+
- name: Format Codes
31+
run: yarn format
32+
33+
- name: Apply autofix.ci
34+
uses: autofix-ci/action@2891949f3779a1cafafae1523058501de3d4e944 # v1
35+
with:
36+
fail-fast: false

.github/workflows/ci.yml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,14 +14,11 @@ jobs:
1414
strategy:
1515
matrix:
1616
node:
17-
- 16
1817
- 18
1918
- 20
2019
- 22
2120
fail-fast: false
2221
runs-on: ubuntu-latest
23-
env:
24-
YARN_IGNORE_NODE: 1
2522
steps:
2623
- name: Checkout Repo
2724
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
@@ -42,10 +39,14 @@ jobs:
4239
if: ${{ matrix.node != 16 }}
4340
run: yarn run-s lint test
4441
env:
45-
EFF_NO_LINK_RULES: true
4642
PARSER_NO_WATCH: true
4743

4844
- name: Codecov
4945
uses: codecov/codecov-action@0565863a31f2c772f9f0395002a31e3f06189574 # v5
5046
with:
5147
token: ${{ secrets.CODECOV_TOKEN }}
48+
49+
- name: Run codacy-coverage-reporter
50+
uses: codacy/codacy-coverage-reporter-action@89d6c85cfafaec52c72b6c5e8b2878d33104c699 # v1.3.0
51+
with:
52+
api-token: ${{ secrets.CODACY_API_TOKEN }}

.github/workflows/codeql.yml

Lines changed: 0 additions & 48 deletions
This file was deleted.

.github/workflows/pkg-pr-new.yml

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
name: Publish Any Commit
2+
on:
3+
- push
4+
- pull_request
5+
6+
concurrency:
7+
group: ${{ github.workflow }}-${{ github.ref }}
8+
cancel-in-progress: true
9+
10+
jobs:
11+
publish:
12+
runs-on: ubuntu-latest
13+
14+
steps:
15+
- name: Checkout Repo
16+
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
17+
18+
- name: Setup Node.js LTS
19+
uses: actions/setup-node@cdca7365b2dadb8aad0a33bc7601856ffabcc48e # v4
20+
with:
21+
node-version: lts/*
22+
cache: yarn
23+
24+
- name: Install dependencies
25+
run: yarn --immutable
26+
27+
- name: Build
28+
run: yarn build
29+
30+
- name: Publish
31+
run: yarn dlx pkg-pr-new publish --compact './packages/*'

.github/workflows/release.yml

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,15 @@ on:
55
branches:
66
- main
77

8+
concurrency:
9+
group: ${{ github.workflow }}-${{ github.ref }}
10+
cancel-in-progress: true
11+
12+
permissions:
13+
contents: write
14+
id-token: write
15+
pull-requests: write
16+
817
jobs:
918
release:
1019
name: Release
@@ -25,14 +34,18 @@ jobs:
2534
- name: Install Dependencies
2635
run: yarn --immutable
2736

37+
- name: Build
38+
run: yarn build
39+
2840
- name: Create Release Pull Request or Publish to npm
2941
id: changesets
3042
uses: changesets/action@v1
3143
with:
3244
commit: 'chore: release package(s)'
3345
title: 'chore: release package(s)'
34-
# This expects you to have a script called release which does a build for your packages and calls changeset publish
3546
publish: yarn release
47+
version: yarn run version
3648
env:
3749
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
50+
NPM_CONFIG_PROVENANCE: true
3851
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}

.prettierignore

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1 @@
11
.yarn
2-
/auto-imports.d.ts

.renovaterc

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
{
2+
"extends": [
3+
"github>1stG/configs"
4+
]
5+
}

.simple-git-hooks.cjs

Lines changed: 0 additions & 1 deletion
This file was deleted.

.simple-git-hooks.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
export { default } from '@1stg/simple-git-hooks'

0 commit comments

Comments
 (0)