Skip to content
This repository has been archived by the owner on May 5, 2024. It is now read-only.

chore: skip commit verification + bump @babel/* dependencies #642

Merged
merged 2 commits into from
Jun 13, 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
12 changes: 6 additions & 6 deletions .github/workflows/pre-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,17 +16,17 @@ jobs:

steps:
- name: "Checkout source code"
uses: "actions/checkout@v2.3.4"
uses: "actions/checkout@v3"
with:
lfs: true
fetch-depth: 0

- id: yarn-cache
run: echo "dir=$(yarn cache dir)" >> $GITHUB_OUTPUT
- uses: "actions/[email protected]"
- name: "🔧 setup node"
uses: actions/setup-node@v3
with:
path: ${{ steps.yarn-cache.outputs.dir }}
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }}
cache: "yarn"
node-version: 16
cache-dependency-path: "yarn.lock"

- run: "yarn install --frozen-lockfile"
- run: "yarn lint"
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/tagged-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,17 +14,17 @@ jobs:

steps:
- name: "Checkout source code"
uses: "actions/checkout@v2.3.4"
uses: "actions/checkout@v3"
with:
lfs: true
fetch-depth: 0

- id: yarn-cache
run: echo "dir=$(yarn cache dir)" >> $GITHUB_OUTPUT
- uses: "actions/[email protected]"
- name: "🔧 setup node"
uses: actions/setup-node@v3
with:
path: ${{ steps.yarn-cache.outputs.dir }}
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }}
cache: "yarn"
node-version: 16
cache-dependency-path: "yarn.lock"

- run: "yarn install --frozen-lockfile"
- run: "yarn lint"
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,17 +18,17 @@ jobs:

steps:
- name: "Checkout source code"
uses: "actions/checkout@v2.3.4"
uses: "actions/checkout@v3"
with:
lfs: true
fetch-depth: 0

- id: yarn-cache
run: echo "dir=$(yarn cache dir)" >> $GITHUB_OUTPUT
- uses: "actions/[email protected]"
- name: "🔧 setup node"
uses: actions/setup-node@v3
with:
path: ${{ steps.yarn-cache.outputs.dir }}
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }}
cache: "yarn"
node-version: 16
cache-dependency-path: "yarn.lock"

- run: "yarn install --frozen-lockfile"
- run: "yarn lint"
Expand Down
6 changes: 5 additions & 1 deletion commitlint.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,9 @@ module.exports = {
'footer-max-line-length': [0, 'never'],
'body-max-line-length': [0, 'never'],
},
ignores: [(message) => message.startsWith('chore(deps): ')],
ignores: [
(message) =>
message.startsWith('chore(deps): ') ||
message.includes('Update Github Runner Node version and deprecate set-output'),
],
};
4 changes: 1 addition & 3 deletions lerna.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,7 @@
"version": "1.2.1",
"npmClient": "yarn",
"useWorkspaces": true,
"packages": [
"packages/*"
],
"packages": ["packages/*"],
"command": {
"version": {
"allowBranch": "master",
Expand Down
16 changes: 8 additions & 8 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
},
"config": {
"eslintPaths": ".*.js *.js",
"prettierPaths": "*.{json,md,yaml,yml} .github/**/*.{json,md,yaml,yml} !package.json !lerna.json"
"prettierPaths": "*.{json,md} .github/**/*.yml"
},
"scripts": {
"test": "yarn jest --env=node --colors",
Expand All @@ -30,11 +30,11 @@
"release": "lerna version"
},
"devDependencies": {
"@babel/core": "^7.13.16",
"@babel/plugin-proposal-class-properties": "^7.12.1",
"@babel/plugin-proposal-optional-chaining": "^7.12.1",
"@babel/preset-env": "^7.12.1",
"@babel/preset-typescript": "^7.12.1",
"@babel/core": "^7.22.5",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-proposal-optional-chaining": "^7.21.0",
"@babel/preset-env": "^7.22.5",
"@babel/preset-typescript": "^7.22.5",
"@commitlint/cli": "^12.0.1",
"@commitlint/config-conventional": "^12.0.1",
"@types/jest": "^26.0.22",
Expand All @@ -49,8 +49,8 @@
"jest": "^26.6.3",
"jest-circus": "^26.6.3",
"lerna": "^4.0.0",
"prettier": "^2.1.2",
"typescript": "^4.2.3"
"prettier": "^2.8.8",
"typescript": "4.2.4"
},
"eslintIgnore": [
"!.*.js"
Expand Down
Loading