Skip to content

Merge pull request #867 from localnerve/rc-4.5.2 #1

Merge pull request #867 from localnerve/rc-4.5.2

Merge pull request #867 from localnerve/rc-4.5.2 #1

Workflow file for this run

name: Deploy
on:
push:
branches: [ master ]
jobs:
deploy:
runs-on: ubuntu-latest
permissions:
contents: read
id-token: write
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: '20.x'
registry-url: 'https://registry.npmjs.org'
- run: npm ci
- name: Test
run: npm run lint && xvfb-run -a npm test
- name: Publish
if: ${{ success() }}
run: npm publish --provenance --access public
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}