mirror of
https://github.com/LukeHagar/sveltekit-og.git
synced 2025-12-06 04:21:37 +00:00
28 lines
577 B
YAML
28 lines
577 B
YAML
on:
|
|
push:
|
|
branches: main
|
|
|
|
jobs:
|
|
publish:
|
|
runs-on: ubuntu-latest
|
|
env:
|
|
CI: true
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
- uses: actions/setup-node@v3
|
|
with:
|
|
node-version: 18
|
|
- uses: pnpm/action-setup@v2
|
|
name: Install pnpm
|
|
id: pnpm-install
|
|
with:
|
|
version: 8.6.1
|
|
- run: pnpm install
|
|
- run: pnpm test:build
|
|
- run: pnpm build
|
|
#- run: pnpm test
|
|
- uses: JS-DevTools/npm-publish@v2
|
|
with:
|
|
token: ${{ secrets.NPM_TOKEN }}
|
|
package: "package"
|