-
-
Notifications
You must be signed in to change notification settings - Fork 76
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add package.json with dependencies and scripts
- Loading branch information
1 parent
e0461a6
commit 110a4df
Showing
3 changed files
with
4,044 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -24,6 +24,37 @@ jobs: | |
- name: Checkout | ||
uses: actions/[email protected] | ||
|
||
- name: Checkout | ||
uses: actions/[email protected] | ||
|
||
- name: Install Node.js | ||
uses: actions/setup-node@v4 | ||
with: | ||
node-version: 18 | ||
|
||
- uses: pnpm/[email protected] | ||
name: Install pnpm | ||
id: pnpm-install | ||
with: | ||
version: 8 | ||
run_install: false | ||
|
||
- name: Get pnpm store directory | ||
id: pnpm-cache | ||
run: | | ||
echo "pnpm_cache_dir=$(pnpm store path)" >> $GITHUB_OUTPUT | ||
- uses: actions/cache@v4 | ||
name: Setup pnpm cache | ||
with: | ||
path: ${{ steps.pnpm-cache.outputs.pnpm_cache_dir }} | ||
key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }} | ||
restore-keys: | | ||
${{ runner.os }}-pnpm-store- | ||
- name: Install dependencies | ||
run: pnpm install | ||
|
||
- name: Check bumped version | ||
id: check-bumped-version | ||
uses: actions/github-script@v7 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
{ | ||
"name": "big-bear-casaos", | ||
"version": "1.0.0", | ||
"description": "", | ||
"main": "", | ||
"scripts": {}, | ||
"repository": { | ||
"type": "git", | ||
"url": "git+https://github.com/bigbeartechworld/big-bear-casaos.git" | ||
}, | ||
"author": "", | ||
"license": "GNU General Public License v3.0", | ||
"bugs": { | ||
"url": "https://github.com/bigbeartechworld/big-bear-casaos/issues" | ||
}, | ||
"homepage": "https://github.com/bigbeartechworld/big-bear-casaos#readme", | ||
"devDependencies": { | ||
"@commitlint/cli": "^19.3.0", | ||
"@commitlint/config-conventional": "^19.2.2", | ||
"@commitlint/cz-commitlint": "^19.2.0", | ||
"@types/jest": "^28.1.6", | ||
"@types/js-yaml": "^4.0.9", | ||
"@types/node": "^20.12.7", | ||
"@types/semver": "^7.5.8", | ||
"commitizen": "^4.3.0", | ||
"eslint": "^8.57.0", | ||
"eslint-plugin-json-schema-validator": "^5.1.0", | ||
"eslint-plugin-jsonc": "^2.15.1", | ||
"husky": "^9.0.11", | ||
"jest": "^28.1.3", | ||
"js-yaml": "^4.1.0", | ||
"prettier": "^3.2.5", | ||
"semver": "^7.6.0", | ||
"ts-jest": "^28.0.7", | ||
"typescript": "^5.4.5" | ||
} | ||
} |
Oops, something went wrong.