Update to use pnpm instead of npm (#7)

Reviewed-on: #7
Co-authored-by: chrisdill <chrisdude134@gmail.com>
Co-committed-by: chrisdill <chrisdude134@gmail.com>
This commit is contained in:
Chris Dill 2024-09-01 15:35:47 -04:00 committed by rgebee
parent 0d1f83288d
commit 826f8f9f2c
5 changed files with 1319 additions and 2139 deletions

View File

@ -1,5 +1,5 @@
name: Build name: Build
on: on:
push: push:
branches: branches:
- master - master
@ -7,27 +7,38 @@ on:
branches: branches:
- master - master
runs-on: ubuntu-latest
jobs: jobs:
build: build:
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- uses: actions/checkout@v2 - name: Checkout project
- name: 🔧 Setup node uses: actions/checkout@v4
- name: 🔧 Install pnpm
uses: https://github.com/pnpm/action-setup@v4
with:
version: 9
run_install: false
- name: 🔧 Install node
uses: https://github.com/actions/setup-node@v4 uses: https://github.com/actions/setup-node@v4
with: with:
node-version: '18.0.x' node-version: 20
- name: 🧱 Install node packages cache: pnpm
run: npm ci
- name: ✅ svelte-check - name: 🧱 Install packages
run: npm run check run: pnpm install
- name: ✅ Check project
run: pnpm run check
- name: 🔨 Build project - name: 🔨 Build project
run: npm run build run: pnpm run build
- name: upload artifact
- name: Upload artifact
run: | run: |
tar -czf build.tar.gz build tar -czf build.tar.gz build
curl --user minijack:${{ secrets.PACKAGE_TOKEN }} \ curl --user minijack:${{ secrets.PACKAGE_TOKEN }} \
--upload-file build.tar.gz \ --upload-file build.tar.gz \
https://git.quartznet.info/api/packages/quartznet/generic/artifacts/ref-${{ gitea.sha }}/build-${{ gitea.sha }}.tar.gz https://git.quartznet.info/api/packages/quartznet/generic/artifacts/ref-${{ gitea.sha }}/build-${{ gitea.sha }}.tar.gz
echo https://git.quartznet.info/api/packages/quartznet/generic/artifacts/ref-${{ gitea.sha }}/build-${{ gitea.sha }}.tar.gz echo https://git.quartznet.info/api/packages/quartznet/generic/artifacts/ref-${{ gitea.sha }}/build-${{ gitea.sha }}.tar.gz

View File

@ -1,17 +1,12 @@
# quartznet.info # quartznet.info
This is our main website where you can find information about us and what we do. Main website for quartznet.
This website is a work in progress and subject to change.
## Building Work in progress and subject to change.
1. `npm install` 1. `pnpm install`
2. `npm run build` 2. `pnpm run dev`
## Serving
1. `npm run dev`
## License ## License

2109
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@ -9,14 +9,15 @@
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch" "check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch"
}, },
"devDependencies": { "devDependencies": {
"@sveltejs/adapter-static": "^3.0.1", "@sveltejs/adapter-static": "^3.0.4",
"@sveltejs/kit": "^2.5.10", "@sveltejs/kit": "^2.5.25",
"svelte": "^4.2.17", "@sveltejs/vite-plugin-svelte": "^3.1.2",
"svelte-check": "^3.8.0", "svelte": "^4.2.19",
"svelte-preprocess": "^5.1.4", "svelte-check": "^3.8.6",
"tslib": "^2.6.2", "svelte-preprocess": "^6.0.2",
"typescript": "^5.4.5", "tslib": "^2.7.0",
"vite": "^5.2.12" "typescript": "^5.5.4",
"vite": "^5.4.2"
}, },
"type": "module" "type": "module"
} }

1282
pnpm-lock.yaml generated Normal file

File diff suppressed because it is too large Load Diff