simple atproto oauth for static svelte apps flo-bit.dev/svelte-atproto-client-oauth/

update deploy

Florian 963bbf37 893434f9

+6 -7
+6 -7
.github/workflows/deploy_gh_pages.yml .github/workflows/deploy.yml
··· 12 12 - name: Checkout 13 13 uses: actions/checkout@v4 14 14 15 - - name: Install Node.js 15 + - name: Setup Node.js environment 16 16 uses: actions/setup-node@v4 17 17 with: 18 - node-version: 18 19 - cache: npm 18 + node-version: 20 19 + cache: 'pnpm' 20 20 21 21 - name: Install dependencies 22 - run: npm ci 22 + run: pnpm install 23 23 24 - - name: build 24 + - name: Build 25 + run: pnpm build 25 26 env: 26 27 BASE_PATH: '/${{ github.event.repository.name }}' 27 - run: | 28 - npm run build 29 28 30 29 - name: Upload Artifacts 31 30 uses: actions/upload-pages-artifact@v3