Skip to content

Commit 22a5cb1

Browse files
authored
Merge pull request #16 from atls/feat/core-errors
feat(core-errors): init
2 parents 261f293 + 3d8db0f commit 22a5cb1

File tree

586 files changed

+9087
-9453
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

586 files changed

+9087
-9453
lines changed

.config/husky/.gitignore

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

.config/husky/commit-msg

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1 @@
1-
#!/bin/sh
2-
. "$(dirname "$0")/_/husky.sh"
3-
4-
yarn commit message lint
1+
yarn commit message lint

.config/husky/pre-commit

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1 @@
1-
#!/bin/sh
2-
. "$(dirname "$0")/_/husky.sh"
3-
41
yarn commit staged

.config/husky/prepare-commit-msg

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1 @@
1-
#!/bin/sh
2-
. "$(dirname "$0")/_/husky.sh"
3-
4-
yarn commit message $@
1+
yarn commit message $@

.github/workflows/checks.yaml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
name: Checks
2+
3+
on:
4+
pull_request:
5+
6+
jobs:
7+
check:
8+
name: Checks
9+
uses: atls/shared/.github/workflows/checks.yaml@master
10+
permissions: write-all
11+
with:
12+
node-version: '22'

.github/workflows/publish.yaml

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
name: Publish to registry
2+
3+
on:
4+
pull_request:
5+
types:
6+
- closed
7+
branches:
8+
- master
9+
paths-ignore:
10+
- '.github/**'
11+
12+
jobs:
13+
publish:
14+
if: github.event.pull_request.merged == true
15+
uses: atls/shared/.github/workflows/publish.yaml@master
16+
permissions: write-all
17+
with:
18+
appId: ${{ vars.ATLANTIS_SUPER_BOT_APP_ID }}
19+
secrets:
20+
appPrivateKey: ${{ secrets.ATLANTIS_SUPER_BOT_PRIVATE_KEY }}
21+
npmAuthToken: ${{ secrets.NPM_TOKEN }}

.github/workflows/tools.yaml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
name: Update tools
2+
3+
on:
4+
workflow_dispatch:
5+
6+
jobs:
7+
update-tools:
8+
name: Update tools
9+
uses: atls/shared/.github/workflows/tools.yaml@master
10+
permissions: write-all

.pnp.cjs

Lines changed: 3936 additions & 4314 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)