Compare commits
No commits in common. "c816032f54b5e90a229c15efd8196f56eea498fc" and "50ff7324131c941dbc9d6c338e0ae79e3f762bbe" have entirely different histories.
c816032f54
...
50ff732413
5 changed files with 3027 additions and 4919 deletions
|
@ -16,7 +16,5 @@ jobs:
|
|||
uses: actions/checkout@v4
|
||||
- name: Set up Node
|
||||
uses: actions/setup-node@v4
|
||||
with:
|
||||
cache: npm
|
||||
- name: Audit
|
||||
run: npm audit
|
||||
run: pnpm audit
|
||||
|
|
|
@ -12,16 +12,14 @@ jobs:
|
|||
uses: actions/checkout@v4
|
||||
- name: Set up Node
|
||||
uses: actions/setup-node@v4
|
||||
with:
|
||||
cache: npm
|
||||
- name: Install dependencies
|
||||
run: npm install
|
||||
run: pnpm install
|
||||
- name: Check code formatting
|
||||
run: npm run lint:prettier
|
||||
run: pnpm lint:prettier
|
||||
- name: Check code quality
|
||||
run: npm run lint:eslint
|
||||
run: pnpm lint:eslint
|
||||
- name: Check types
|
||||
run: npm run lint:tsc
|
||||
run: pnpm lint:tsc
|
||||
|
||||
build:
|
||||
name: Build
|
||||
|
@ -31,12 +29,10 @@ jobs:
|
|||
uses: actions/checkout@v4
|
||||
- name: Set up Node
|
||||
uses: actions/setup-node@v4
|
||||
with:
|
||||
cache: npm
|
||||
- name: Install dependencies
|
||||
run: npm install
|
||||
run: pnpm install
|
||||
- name: Build
|
||||
run: npm run build
|
||||
run: pnpm build
|
||||
- name: Save build
|
||||
uses: forgejo/upload-artifact@v4
|
||||
with:
|
||||
|
|
4905
package-lock.json
generated
4905
package-lock.json
generated
File diff suppressed because it is too large
Load diff
3019
pnpm-lock.yaml
generated
Normal file
3019
pnpm-lock.yaml
generated
Normal file
File diff suppressed because it is too large
Load diff
|
@ -4,7 +4,7 @@ set -o nounset
|
|||
set -o pipefail
|
||||
set -o xtrace
|
||||
|
||||
npm run "build:targets"
|
||||
pnpm "build:targets"
|
||||
|
||||
PROD='dist/prod'
|
||||
if [[ -d "$PROD" ]]; then
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue