Skip to content

Commit

Permalink
Merge pull request #340 from patrickcate/develop
Browse files Browse the repository at this point in the history
New Release
  • Loading branch information
patrickcate authored Sep 18, 2023
2 parents fd50a9a + 5149e72 commit 0f2fd1c
Show file tree
Hide file tree
Showing 5 changed files with 2,766 additions and 2,159 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,16 +7,16 @@ on:

jobs:
ci:
if: "!contains(github.event.head_commit.message, 'skip ci')"
if: ${{ !contains(github.event.head_commit.message, 'skip ci') }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest]
node: [14, 16, 18]
node: [16, 18, 20]

steps:
- name: checkout
uses: actions/checkout@v3
uses: actions/checkout@v4

- uses: actions/setup-node@v3
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/codeql-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v3
uses: actions/checkout@v4

# Initializes the CodeQL tools for scanning.
- name: Initialize CodeQL
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,11 @@ on:

jobs:
release:
if: "!contains(github.event.head_commit.message, 'skip release')"
if: ${{ !contains(github.event.head_commit.message, 'skip release') }}
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
fetch-depth: 0
token: ${{ secrets.SEMANTIC_RELEASE_GH_TOKEN }}
Expand Down
16 changes: 10 additions & 6 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -63,28 +63,32 @@
"devDependencies": {
"@commitlint/cli": "^17.3.0",
"@commitlint/config-conventional": "^17.3.0",
"@nuxt/module-builder": "^0.3.1",
"@nuxt/module-builder": "^0.5.1",
"@nuxt/schema": "^3.0.0",
"@nuxt/test-utils": "^3.0.0",
"@nuxtjs/eslint-config-typescript": "^12.0.0",
"@semantic-release/changelog": "^6.0.2",
"@semantic-release/git": "^10.0.1",
"@vitest/coverage-c8": "^0.25.8",
"@vitest/coverage-c8": "^0.33.0",
"@vitest/coverage-v8": "^0.34.4",
"commitizen": "^4.2.5",
"cz-customizable": "^7.0.0",
"eslint": "^8.28.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-prettier-vue": "^4.2.0",
"execa": "^6.1.0",
"execa": "^8.0.1",
"fake-json-api-server": "^1.7.0",
"husky": "^8.0.2",
"lint-staged": "^13.0.3",
"lint-staged": "^14.0.1",
"npm-run-all": "^4.1.5",
"nuxt": "^3.4.3",
"nuxt": "^3.7.3",
"prettier": "^2.8.0",
"semantic-release": "^19.0.5",
"vitest": "^0.25.8"
"vitest": "^0.34.4"
},
"peerDependencies": {
"axios": "^0.27.0"
},
"publishConfig": {
"access": "public"
Expand Down
Loading

0 comments on commit 0f2fd1c

Please sign in to comment.