Skip to content

2.8.9: Dependencies update #12

2.8.9: Dependencies update

2.8.9: Dependencies update #12

Workflow file for this run

name: Publish Package to npmjs
on:
release:
types: [ created ]
jobs:
build:
runs-on: ubuntu-latest
permissions:
contents: write
id-token: write
steps:
- uses: actions/checkout@v4
- uses: pnpm/action-setup@v3
- uses: actions/setup-node@v4
with:
node-version-file: '.nvmrc'
registry-url: 'https://registry.npmjs.org'
cache: 'pnpm'
- run: npm install -g npm
- run: pnpm install
- run: pnpm test
env:
TWITCH_ID: ${{ secrets.TWITCH_ID }}
TWITCH_SECRET: ${{ secrets.TWITCH_SECRET }}
- run: pnpm build
- run: npm publish --provenance --access public
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}