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

ci: fix release by upgrading dependencies #87

Merged
merged 3 commits into from
Oct 6, 2023
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
16 changes: 3 additions & 13 deletions .all-contributorsrc
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,7 @@
"projectOwner": "tablecheck",
"repoType": "github",
"repoHost": "https://github.com",
"files": [
"README.md"
],
"files": ["README.md"],
"imageSize": 100,
"commit": false,
"commitConvention": "angular",
Expand All @@ -15,22 +13,14 @@
"name": "Simeon Cheeseman",
"avatar_url": "https://avatars.githubusercontent.com/u/1085899?v=4",
"profile": "https://github.com/SimeonC",
"contributions": [
"doc",
"infra",
"test",
"code",
"example"
]
"contributions": ["doc", "infra", "test", "code", "example"]
},
{
"login": "SashaShostyr",
"name": "Alex",
"avatar_url": "https://avatars.githubusercontent.com/u/19342294?v=4",
"profile": "https://github.com/SashaShostyr",
"contributions": [
"test"
]
"contributions": ["test"]
}
],
"contributorsPerLine": 6,
Expand Down
2 changes: 1 addition & 1 deletion .eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ module.exports = {
node: true,
},
parserOptions: {
project: './tsconfig.base.json',
project: './tsconfig.eslint.json',
},
overrides: [
{
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:

- name: Install and Build 🔧
run: |
git branch --track main origin/main
git branch -u origin/main main
npm ci --prefer-offline --silent
npm run build:ci

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,4 +26,4 @@ jobs:
GITHUB_TOKEN: ${{ secrets.RELEASE_BOT_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
SLACK_TOKEN: ${{ secrets.SLACK_TOKEN }}
run: npx auto shipit
run: npx auto shipit --verbose
2 changes: 0 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,6 @@ junit
.env.test.local
.env.production.local
.@tablecheck
tsconfig.compound.json
/packages/quality/build.config.ts
/packages/utils/build.config.ts
/tsconfig.eslint.json
/packages/utils/config
Loading