Skip to content

ci: test fix deploy tokens #10

ci: test fix deploy tokens

ci: test fix deploy tokens #10

Workflow file for this run

name: Publish
on:
push:
tags:
- 'v*'
jobs:
build:
name: Publish
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [20, latest]
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- name: Install dependencies
run: npm ci
- name: Run tests
run: npm test
- name: Run build
run: npm run build
- name: Publish package
run: |
npm set //registry.npmjs.org/:_authToken=${{ secrets.NPM_TOKEN }}
npm publish --access public